Amadeus · JSON Structure

Hotel Booking Arrival Flight Details Structure

ArrivalFlightDetails structure from Hotel Booking API

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

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

Properties

carrierCode number departure arrival

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-arrival-flight-details-structure.json",
  "title": "ArrivalFlightDetails",
  "description": "ArrivalFlightDetails structure from Hotel Booking API",
  "type": "object",
  "properties": {
    "carrierCode": {
      "type": "string",
      "description": "Carrier code"
    },
    "number": {
      "type": "string",
      "description": "Flight segment number"
    },
    "departure": {
      "type": "object",
      "description": "Departure or arrival information"
    },
    "arrival": {
      "type": "object",
      "description": "Departure or arrival information"
    }
  },
  "required": [
    "carrierCode",
    "number",
    "departure"
  ]
}