Sabre · Schema

TravelerInfoSummary

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
AirTravelerAvail array
PriceRequestInformation object
View JSON Schema on GitHub

JSON Schema

sabre-travelerinfosummary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TravelerInfoSummary",
  "title": "TravelerInfoSummary",
  "type": "object",
  "required": [
    "AirTravelerAvail"
  ],
  "properties": {
    "AirTravelerAvail": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "PassengerTypeQuantity": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "Code": {
                  "type": "string",
                  "enum": [
                    "ADT",
                    "CHD",
                    "INF",
                    "INS"
                  ],
                  "description": "Passenger type code"
                },
                "Quantity": {
                  "type": "integer",
                  "minimum": 1
                }
              }
            }
          }
        }
      }
    },
    "PriceRequestInformation": {
      "type": "object",
      "properties": {
        "CurrencyCode": {
          "type": "string",
          "example": "USD"
        }
      }
    }
  }
}