Schema.org · Schema

Schema.org GeoCoordinates

The geographic coordinates of a place or event.

Schema.orgStructured DataLinked DataJSON-LDVocabularySEOWeb StandardsRDFOntology

Properties

Name Type Description
@type string The Schema.org type.
@context string
latitude number The latitude of a location.
longitude number The longitude of a location.
elevation object The elevation of a location in meters.
address object Physical address of the location.
addressCountry string The country. Use the two-letter ISO 3166-1 alpha-2 country code.
postalCode string The postal code.
View JSON Schema on GitHub

JSON Schema

schema-org-geo-coordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://schema.org/schemas/geo-coordinates.json",
  "title": "Schema.org GeoCoordinates",
  "description": "The geographic coordinates of a place or event.",
  "type": "object",
  "required": ["@type", "latitude", "longitude"],
  "properties": {
    "@type": {
      "type": "string",
      "const": "GeoCoordinates",
      "description": "The Schema.org type."
    },
    "@context": {
      "type": "string",
      "default": "https://schema.org"
    },
    "latitude": {
      "type": "number",
      "description": "The latitude of a location.",
      "minimum": -90,
      "maximum": 90
    },
    "longitude": {
      "type": "number",
      "description": "The longitude of a location.",
      "minimum": -180,
      "maximum": 180
    },
    "elevation": {
      "oneOf": [
        { "type": "number" },
        { "type": "string" }
      ],
      "description": "The elevation of a location in meters."
    },
    "address": {
      "oneOf": [
        { "type": "string" },
        { "$ref": "schema-org-postal-address-schema.json" }
      ],
      "description": "Physical address of the location."
    },
    "addressCountry": {
      "type": "string",
      "description": "The country. Use the two-letter ISO 3166-1 alpha-2 country code."
    },
    "postalCode": {
      "type": "string",
      "description": "The postal code."
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/schema-org-geo-coordinates"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.