OpenAPI: How to mark a schema field as required
22 January 2023 (Updated 22 January 2023)
Suppose you have a POST /v1/clients
endpoint that requires a JSON payload where the firstName
and lastName
fields are required, but email
is not. You can describe this with the following OpenAPI schema:
Now, if you use a tool like Swagger UI, you’ll see that firstName
and lastName
fields are marked as required, but not email
.

You can paste the above YAML here to see the generated SwaggerUI docs.
Tagged:
OpenAPI
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment