Amadeus · Schema

HotelProduct_RateFamily

The estimated rate code family of the offer. Grouping various rate plan codes that belongs to the same family and indicates the type of the rate

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
code string The estimated rate family (PRO,FAM,GOV)
type string The type of the rate (public=P, negotiated=N, conditional=C)
View JSON Schema on GitHub

JSON Schema

hotel-search-hotel-product-rate-family-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/hotel-search-hotel-product-rate-family-schema.json",
  "title": "HotelProduct_RateFamily",
  "description": "The estimated rate code family of the offer. Grouping various rate plan codes that belongs to the same family and indicates the type of the rate",
  "type": "object",
  "properties": {
    "code": {
      "description": "The estimated rate family (PRO,FAM,GOV)",
      "type": "string",
      "pattern": "[A-Z0-9]{3}",
      "example": "string-value"
    },
    "type": {
      "description": "The type of the rate (public=P, negotiated=N, conditional=C)",
      "type": "string",
      "pattern": "[PNC]",
      "example": "string-value"
    }
  }
}