Amadeus · Schema

Tax

single tax information

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

JSON Schema

transfer-search-tax-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-tax-schema.json",
  "title": "Tax",
  "description": "single tax information",
  "allOf": [
    {
      "type": "object",
      "properties": {
        "monetaryAmount": {
          "type": "string",
          "example": "10.5"
        }
      }
    },
    {
      "type": "object",
      "properties": {
        "indicator": {
          "type": "string",
          "description": "Tax category"
        },
        "natureCode": {
          "type": "string",
          "description": "Tax code"
        },
        "countryCode": {
          "type": "string",
          "description": "Tax iso country code"
        },
        "rate": {
          "type": "string",
          "description": "Tax rate"
        }
      }
    }
  ]
}