Amadeus Media · JSON Structure

Hotel Content Hotel Address Structure

Hotel physical address.

Type: object Properties: 5
ContentHotelsImagesMediaTravel

HotelAddress is a JSON Structure definition published by Amadeus Media, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

lines postalCode cityName countryCode stateCode

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-media/refs/heads/main/json-structure/hotel-content-hotel-address-structure.json",
  "name": "HotelAddress",
  "description": "Hotel physical address.",
  "type": "object",
  "properties": {
    "lines": {
      "type": "array",
      "description": "Street address lines.",
      "items": {
        "type": "string"
      },
      "example": [
        "15 Park Lane"
      ]
    },
    "postalCode": {
      "type": "string",
      "description": "Postal or ZIP code.",
      "example": "W1K 1BE"
    },
    "cityName": {
      "type": "string",
      "description": "City name.",
      "example": "London"
    },
    "countryCode": {
      "type": "string",
      "description": "ISO 3166-1 alpha-2 country code.",
      "example": "GB"
    },
    "stateCode": {
      "type": "string",
      "description": "State or province code (where applicable).",
      "example": "ENG"
    }
  }
}