{ "$schema": "https://json-structure.org/meta/core/v0/#", "type": "object", "name": "GeoCoordinates", "description": "The geographic coordinates of a place or event.", "properties": { "type": { "type": "string" }, "context": { "type": "string" }, "latitude": { "type": "double" }, "longitude": { "type": "double" }, "elevation": { "type": "double" }, "address": { "type": { "$ref": "schema-org-postal-address.json" } }, "addressCountry": { "type": "string" }, "postalCode": { "type": "string" } }, "required": ["latitude", "longitude"] }