Dictionaries

Dictionaries schema

BookingFlightsHotelsReservationsTravel

Properties

Name Type Description
locations object
aircraft object
currencies object
carriers object
View JSON Schema on GitHub

JSON Schema

flight-order-management-dictionaries-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-schema/flight-order-management-dictionaries-schema.json",
  "title": "Dictionaries",
  "description": "Dictionaries schema",
  "type": "object",
  "properties": {
    "locations": {
      "$ref": "#/definitions/LocationEntry"
    },
    "aircraft": {
      "$ref": "#/definitions/AircraftEntry"
    },
    "currencies": {
      "$ref": "#/definitions/CurrencyEntry"
    },
    "carriers": {
      "$ref": "#/definitions/CarrierEntry"
    }
  }
}