Problem: Need to add validation to only allow min < max. Can this be done using OpenAPIV3 schema validation? Appreciate your help, could not figure this out reading the documentation.
Range can be provided using minimum and maximum, but how do i refer the value of an existing property?
openAPIV3Schema:
type: object
required:
- min
- max
properties:
min:
type: integer
format: int32
max:
type: integer
format: int32