{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Point", "title": "Point", "type": "object", "properties": { "x": { "type": "number", "description": "Longitude" }, "y": { "type": "number", "description": "Latitude" }, "spatialReference": { "$ref": "#/components/schemas/SpatialReference" } } }