Amadeus · Schema

Fee

single fee information

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights
View JSON Schema on GitHub

JSON Schema

transfer-search-fee-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/transfer-search-fee-schema.json",
  "title": "Fee",
  "description": "single fee information",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "monetaryAmount": {
          "type": "string",
          "example": "10.5"
        }
      }
    },
    {
      "type": "object",
      "properties": {
        "currencyCode": {
          "type": "string",
          "example": "USD"
        },
        "indicator": {
          "type": "string",
          "description": "fee category e.g. \"AIRPORT\", \"CREDITCARD\" ,\"CANCELLATION\""
        }
      }
    }
  ]
}