AssociatedRecord

record associated to the order

BookingFlightsHotelsReservationsTravel
View JSON Schema on GitHub

JSON Schema

flight-order-management-associated-record-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-associated-record-schema.json",
  "title": "AssociatedRecord",
  "description": "record associated to the order",
  "allOf": [
    {
      "$ref": "#/definitions/AssociatedRecordCommon"
    },
    {
      "type": "object",
      "properties": {
        "flightOfferId": {
          "type": "string",
          "description": "id of the impacted flight offer",
          "example": "1"
        }
      }
    }
  ]
}