I want to define this
"locationPoly": [
[-87.63466, 24.50182],
[-80.03074, 24.50182],
[-80.03074, 31.00107],
[-87.63466, 31.00107],
[-87.63466, 24.50182]
],
In my OpenAPI YAML schema, I defined it like this:
locationPoly:
type: array
properties:
type: array
properties:
type: number
But I am getting the "schema is invalid" error. Is there another way to define this?