starvsion
6 years agoNew Contributor
OAS3 - Error on Parameter.required - Optional Parameter
The swagger doc compiles properly, just that the error is getting very annoying, so I have optional URL Query, I wrote it this way:
parameters:
- in: path
name: query
schema:
type: string
description: search queryAnd I receive this error:
should have required property 'required' missingProperty: required
So, I changed it to:
parameters:
- in: path
name: query
schema:
type: string
description: search query
required: falseAnd now it shows this error:
should be equal to one of the allowed values allowedValues: true
What am I supposed to do here?
Query parameters are defined using "in: query", not "in: path".