Open
Description
Hello,
it would be great for reusability if I could overwrite the required
field of parameter and header objects, like I can overwritesummary
and description
in OpenAPI 3.1.
paths:
/my-resource:
parameters:
- $ref: '#/components/parameters/Accept'
required: true
get:
# some definition
components:
parameters:
Accept:
name: Accept
in: header
required: false
schema:
type: string