Sabre · Schema

Address

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
Street string
City string
StateProvince string
PostalCode string
CountryCode string
View JSON Schema on GitHub

JSON Schema

sabre-address-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Address",
  "title": "Address",
  "type": "object",
  "properties": {
    "Street": {
      "type": "string"
    },
    "City": {
      "type": "string"
    },
    "StateProvince": {
      "type": "string"
    },
    "PostalCode": {
      "type": "string"
    },
    "CountryCode": {
      "type": "string"
    }
  }
}