{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GeoBoundingBox", "title": "GeoBoundingBox", "description": "Geo filter request\n\nMatches coordinates inside the rectangle, described by coordinates of lop-left and bottom-right edges", "type": "object", "required": [ "bottom_right", "top_left" ], "properties": { "top_left": { "$ref": "#/components/schemas/GeoPoint" }, "bottom_right": { "$ref": "#/components/schemas/GeoPoint" } } }