Sabre · Schema

Rate

TravelGDSAirlinesHotelsCar RentalBooking

Properties

Name Type Description
Amount number
CurrencyCode string
View JSON Schema on GitHub

JSON Schema

sabre-rate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Rate",
  "title": "Rate",
  "type": "object",
  "properties": {
    "Amount": {
      "type": "number",
      "format": "double"
    },
    "CurrencyCode": {
      "type": "string",
      "example": "USD"
    }
  }
}