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
Could you please tell me how I can add a list of mandatory parameters to the schema?
Example: components: schemas: Request: type: object properties: id: type: integer required: [ id, ]
The text was updated successfully, but these errors were encountered:
Could you please tell me how I can add a list of mandatory parameters to the schema?
Example:
components:
schemas:
Request:
type: object
properties:
id:
type: integer
required: [
id,
]
The text was updated successfully, but these errors were encountered: