I'm using OpenAPI 3 and have two query parameters, at least one of which is required but it doesn't matter which.
I.e., as sudocode:
if parameter_1 OR parameter_2:
do stuff
else:
error
Is this possible in OpenAPI 3? There's no mention of it in the spec as far as I can see, or the JSON Schema spec either.
parameters
(e.g. query/header params) or model/schemaproperties
? – Consumptive