Amadeus · JSON Structure

Hotel Booking V1 Payment Structure

form of payment (mandatory in case of `acceptedPayments`/`methods`)

Type: object Properties: 3 Required: 1
TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Hotel Booking V1 Payment Structure is a JSON Structure definition published by Amadeus, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/draft/v0/schema meta-schema.

Properties

id method card

Meta-schema: https://json-structure.org/draft/v0/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/v0/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-structure/hotel-booking-v1-payment-structure.json",
  "title": "Payment",
  "description": "form of payment (mandatory in case of `acceptedPayments`/`methods`)",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "method": {
      "type": "string",
      "description": "The Payment Methods:\n * creditCard (CC) - Payment Cards in `creditCards` are accepted           "
    },
    "card": {
      "type": "object",
      "description": "payment card details (mandatory in case of `method` creditCard)"
    }
  },
  "required": [
    "method"
  ]
}