record associated to the order
{ "$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" } } } ] }