Home
Amadeus Reservations
Flight Order Management Flight Order Structure
Flight Order Management Flight Order Structure
input parameter to create a flight order
Type: object
Properties: 14
Required: 2
Booking Flights Hotels Reservations Travel
FlightOrder is a JSON Structure definition published by Amadeus Reservations, describing 14 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
type
id
queuingOfficeId
ownerOfficeId
associatedRecords
flightOffers
travelers
remarks
formOfPayments
ticketingAgreement
automatedProcess
contacts
tickets
formOfIdentifications
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-structure/flight-order-management-flight-order-structure.json",
"name": "FlightOrder",
"description": "input parameter to create a flight order",
"type": "object",
"properties": {
"type": {
"description": "the resource name",
"type": "string",
"example": "flight-order"
},
"id": {
"description": "unique identifier of the flight order",
"type": "string",
"example": "MlpZVkFMfFdBVFNPTnwyMDE1LTExLTAy",
"readOnly": true
},
"queuingOfficeId": {
"description": "office Id where to queue the order",
"type": "string",
"example": "NCE1A0955"
},
"ownerOfficeId": {
"description": "office Id where will be transfered the ownership of the order",
"type": "string",
"example": "NCE1A0955"
},
"associatedRecords": {
"description": "list of associated record",
"type": "array",
"readOnly": true,
"items": {
"$ref": "#/definitions/AssociatedRecord"
}
},
"flightOffers": {
"description": "list of flight offer",
"type": "array",
"minItems": 1,
"maxItems": 6,
"items": {
"$ref": "#/definitions/FlightOffer"
}
},
"travelers": {
"description": "list of travelers",
"type": "array",
"minItems": 1,
"maxItems": 18,
"items": {
"$ref": "#/definitions/Traveler"
}
},
"remarks": {
"description": "list of global remarks",
"$ref": "#/definitions/Remarks"
},
"formOfPayments": {
"description": "list of form of payments",
"type": "array",
"minItems": 1,
"maxItems": 6,
"items": {
"$ref": "#/definitions/FormOfPayment"
}
},
"ticketingAgreement": {
"$ref": "#/definitions/TicketingAgreement"
},
"automatedProcess": {
"description": "list of automatic queuing",
"type": "array",
"minItems": 0,
"maxItems": 31,
"items": {
"$ref": "#/definitions/AutomatedProcess"
}
},
"contacts": {
"description": "list of general contact information",
"type": "array",
"items": {
"$ref": "#/definitions/Contact"
}
},
"tickets": {
"description": "list of tickets",
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/AirTravelDocument"
}
},
"formOfIdentifications": {
"description": "list of forms of identifications applicable to travelers by airline",
"type": "array",
"items": {
"$ref": "#/definitions/FormOfIdentification"
}
}
},
"required": [
"type",
"flightOffers"
]
}