{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-schema/amazon-pinpoint-gps-coordinates-schema.json", "title": "GPSCoordinates", "description": "Specifies the GPS coordinates of a location.", "type": "object", "properties": { "Latitude": { "allOf": [ { "$ref": "#/components/schemas/__double" }, { "description": "The latitude coordinate of the location." } ] }, "Longitude": { "allOf": [ { "$ref": "#/components/schemas/__double" }, { "description": "The longitude coordinate of the location." } ] } }, "required": [ "Latitude", "Longitude" ] }