OpenTripMap · Schema

FeatureCollection

Feature Collection

TravelPoints of InterestPOITourismMapsGeospatialOpenStreetMapWikipediaAttractionsRestaurantsHotelsMuseumsREST API

Properties

Name Type Description
type string FeatureCollection
features array
View JSON Schema on GitHub

JSON Schema

featurecollection.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/opentripmap/refs/heads/main/json-schema/featurecollection.json",
  "title": "FeatureCollection",
  "type": "object",
  "description": "Feature Collection",
  "externalDocs": {
    "url": "http://geojson.org/geojson-spec.html#feature-collection-objects",
    "description": "The GeoJSON Format specification"
  },
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "Feature"
      ],
      "description": "FeatureCollection"
    },
    "features": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Feature"
      }
    }
  }
}