{ "$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-air-travel-document-structure.json", "name": "AirTravelDocument", "description": "ticket information", "allOf": [ { "$ref": "#/definitions/AirTravelDocumentCommon" }, { "type": "object", "properties": { "travelerId": { "type": "string", "description": "id of the impacted traveler", "example": "1" }, "segmentIds": { "description": "Ids of the impacted segments", "type": "array", "items": { "type": "string" }, "example": "1" } } } ] }