{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OutlookGeoCoordinates", "title": "OutlookGeoCoordinates", "type": "object", "description": "The geographic coordinates and elevation of a location.", "properties": { "latitude": { "type": "number", "format": "double", "example": 42.5 }, "longitude": { "type": "number", "format": "double", "example": 42.5 }, "accuracy": { "type": "number", "format": "double", "example": 42.5 }, "altitude": { "type": "number", "format": "double", "example": 42.5 }, "altitudeAccuracy": { "type": "number", "format": "double", "example": 42.5 } } }