GeoCode

GeoCode schema

ContentDestinationMediaPhotosPoints of InterestTourismTravel

Properties

Name Type Description
latitude number latitude of the location
longitude number longitude of the location
View JSON Schema on GitHub

JSON Schema

points-of-interest-geo-code-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-traveler-media/refs/heads/main/json-schema/points-of-interest-geo-code-schema.json",
  "title": "GeoCode",
  "description": "GeoCode schema",
  "properties": {
    "latitude": {
      "description": "latitude of the location",
      "type": "number",
      "format": "double",
      "example": 43.580418
    },
    "longitude": {
      "description": "longitude of the location",
      "type": "number",
      "format": "double",
      "example": 7.125102
    }
  },
  "type": "object"
}