{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-pinpoint/refs/heads/main/json-structure/amazon-pinpoint-gps-coordinates-structure.json", "name": "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" ] }