{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-macie/refs/heads/main/json-schema/amazon-macie-ip-geo-location-schema.json", "title": "IpGeoLocation", "description": "Provides geographic coordinates that indicate where a specified IP address originated from.", "type": "object", "properties": { "lat": { "allOf": [ { "$ref": "#/components/schemas/__double" }, { "description": "The latitude coordinate of the location, rounded to four decimal places." } ] }, "lon": { "allOf": [ { "$ref": "#/components/schemas/__double" }, { "description": "The longitude coordinate of the location, rounded to four decimal places." } ] } } }