Sabre · Schema

PaymentInfo

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
CardType string
CardNumber string
ExpiryDate string
CardholderName string
View JSON Schema on GitHub

JSON Schema

sabre-paymentinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaymentInfo",
  "title": "PaymentInfo",
  "type": "object",
  "properties": {
    "CardType": {
      "type": "string",
      "enum": [
        "VI",
        "MC",
        "AX",
        "DS"
      ]
    },
    "CardNumber": {
      "type": "string"
    },
    "ExpiryDate": {
      "type": "string"
    },
    "CardholderName": {
      "type": "string"
    }
  }
}