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: trueget:
# some definitioncomponents:
parameters:
Accept:
name: Acceptin: headerrequired: falseschema:
type: string
Hello,
it would be great for reusability if I could overwrite the
requiredfield of parameter and header objects, like I can overwritesummaryanddescriptionin OpenAPI 3.1.