OpenTripMap · Schema

Geometry

GeoJSON geometry

TravelPoints of InterestPOITourismMapsGeospatialOpenStreetMapWikipediaAttractionsRestaurantsHotelsMuseumsREST API

Properties

Name Type Description
type string Point
coordinates array
View JSON Schema on GitHub

JSON Schema

geometry.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/opentripmap/refs/heads/main/json-schema/geometry.json",
  "title": "Geometry",
  "type": "object",
  "description": "GeoJSON geometry",
  "externalDocs": {
    "url": "http://geojson.org/geojson-spec.html#geometry-objects",
    "description": "The GeoJSON Format specification"
  },
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "Point"
      ],
      "description": "Point"
    },
    "coordinates": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "number"
        }
      }
    }
  }
}