Amadeus · JSON Structure

Hotel Booking Address Structure

Address information

Type: object Properties: 5 Required: 3
TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Hotel Booking Address Structure is a JSON Structure definition published by Amadeus, describing 5 properties, of which 3 are required. It conforms to the https://json-structure.org/draft/v0/schema meta-schema.

Properties

lines postalCode countryCode cityName stateCode

Meta-schema: https://json-structure.org/draft/v0/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/v0/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-structure/hotel-booking-address-structure.json",
  "title": "Address",
  "description": "Address information",
  "type": "object",
  "properties": {
    "lines": {
      "type": "array",
      "description": "Line 1 = Street address, Line 2 = Apartment, suite, unit, building, floor, etc"
    },
    "postalCode": {
      "type": "string",
      "description": "Example: 74130"
    },
    "countryCode": {
      "type": "string",
      "description": "ISO 3166-1 country code"
    },
    "cityName": {
      "type": "string",
      "description": "Full city name. Example: Dublin"
    },
    "stateCode": {
      "type": "string",
      "description": "State code (two character standard IATA state code)"
    }
  },
  "required": [
    "postalCode",
    "countryCode",
    "cityName"
  ]
}