Amadeus · JSON Structure

Transfer Book Address Structure

address information

Type: object Properties: 7
TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Transfer Book Address Structure is a JSON Structure definition published by Amadeus, describing 7 properties. It conforms to the https://json-structure.org/draft/v0/schema meta-schema.

Properties

line zip countryCode cityName stateCode latitude longitude

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/transfer-book-address-structure.json",
  "title": "Address",
  "description": "address information",
  "type": "object",
  "properties": {
    "line": {
      "type": "string",
      "description": "Address line with street, number, bulding, etc..."
    },
    "zip": {
      "type": "string",
      "description": "Post office code number"
    },
    "countryCode": {
      "type": "string",
      "description": "Country code (two character standard IATA country code)"
    },
    "cityName": {
      "type": "string",
      "description": "City, town or postal station"
    },
    "stateCode": {
      "type": "string",
      "description": "State code (two character standard IATA state code)"
    },
    "latitude": {
      "type": "number",
      "format": "double",
      "description": "latitude of the location"
    },
    "longitude": {
      "type": "number",
      "format": "double",
      "description": "longitude of the location"
    }
  }
}