Schema.org · JSON Structure

Schema Org Geo Coordinates

The geographic coordinates of a place or event.

Type: object Properties: 8 Required: 2
Schema.orgStructured DataLinked DataJSON-LDVocabularySEOWeb StandardsRDFOntology

GeoCoordinates is a JSON Structure definition published by Schema.org, describing 8 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

type context latitude longitude elevation address addressCountry postalCode

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

schema-org-geo-coordinates.json Raw ↑
{
  "$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"]
}