Forum Discussion
- HKosovaSmartBear Alumni (Retired)
Define the base "Star" model where the "name" property is optional. Then define another model, say, "NewStar", as allOf of the base model and the required list. Use the base "Star" model in the update request and the "NewStar" model in the create request.
Star: type: object properties: ... NewStar: allOf: - $ref: '#/definitions/Star' # or '#/components/schemas/Star' if you use OAS3 - required: - name
Related Content
- 2 months ago
Recent Discussions
- 13 days ago
- 19 days ago