Remarks

remarks

BookingFlightsHotelsReservationsTravel

Properties

Name Type Description
general array list of general remarks
airline array list of airline remarks
View JSON Schema on GitHub

JSON Schema

flight-create-orders-remarks-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-create-orders-remarks-schema.json",
  "title": "Remarks",
  "description": "remarks",
  "type": "object",
  "properties": {
    "general": {
      "description": "list of general remarks",
      "type": "array",
      "minItems": 0,
      "maxItems": 200,
      "items": {
        "$ref": "#/definitions/GeneralRemark"
      }
    },
    "airline": {
      "description": "list of airline remarks",
      "type": "array",
      "minItems": 0,
      "maxItems": 200,
      "items": {
        "$ref": "#/definitions/AirlineRemark"
      }
    }
  }
}