Sabre · Schema

CitySearch

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
CityCode string
RadiusMiles integer
View JSON Schema on GitHub

JSON Schema

sabre-citysearch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CitySearch",
  "title": "CitySearch",
  "type": "object",
  "required": [
    "CityCode"
  ],
  "properties": {
    "CityCode": {
      "type": "string",
      "example": "NYC"
    },
    "RadiusMiles": {
      "type": "integer",
      "default": 5
    }
  }
}