You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type: object
required:
- name
- email
- status
- login
properties:
name:
type: string
description: The user name
example: Bob
email:
type: string
format: email
description: The user email
example: [email protected]
type:
type: string
enum: ['NeprofileUser', 'NeaccessUser']
default: NeprofileUser
description: The user type
example: NeprofileUser
profile_id:
type: string
format: uuid
description: The user profile id
example: db6f8e8b-65c2-47d5-a0db-90bcc4e9df9e
title:
type: string
description: The user description
example: my_user_title
status:
type: string
enum: [Active, Disabled]
description: The user status
example: Active
login:
type: string
description: The user login
example: my_user
group_strings:
type: string
description: The user group strings
example: "Administrator_group,Developer_group"
The text was updated successfully, but these errors were encountered:
As stated in the OpenAPI specs (cf. https://swagger.io/docs/specification/data-models/data-types/#required)
However required is used at the property level "Swagger 2.0" style. Example:
api-specs/nerm/schemas/POST/User.yaml
Line 5 in 053928a
As such, the object should be described as:
The text was updated successfully, but these errors were encountered: