A latitude/longitude coordinate pair
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/LatLng", "title": "LatLng", "type": "object", "description": "A latitude/longitude coordinate pair", "properties": { "lat": { "type": "number", "format": "double", "description": "Latitude in decimal degrees", "example": 42.5 }, "lng": { "type": "number", "format": "double", "description": "Longitude in decimal degrees", "example": 42.5 } }, "required": [ "lat", "lng" ] }