HotelProduct_DepositPolicy

the deposit/prepay policy information applicable to the offer. It includes accepted payments, deadline and the amount due

BookingFlightsHotelsReservationsTravel

Properties

Name Type Description
amount string Deposit-Prepay amount
deadline string The date and time of the deadline in ISO 8601[https://www.w3.org/TR/NOTE-datetime]. Example: 2010-08-14T13:00:00 Please note that this value is expressed in the hotels local time zone
description object
acceptedPayments object
View JSON Schema on GitHub

JSON Schema

hotel-booking-hotel-product_-deposit-policy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-schema/hotel-booking-hotel-product_-deposit-policy-schema.json",
  "title": "HotelProduct_DepositPolicy",
  "description": "the deposit/prepay policy information applicable to the offer. It includes accepted payments, deadline and the amount due",
  "type": "object",
  "properties": {
    "amount": {
      "type": "string",
      "description": "Deposit-Prepay amount",
      "pattern": "^\\\\d+(\\\\.\\\\d+)?$"
    },
    "deadline": {
      "type": "string",
      "format": "date-time",
      "description": "The date and time of the deadline in ISO 8601[https://www.w3.org/TR/NOTE-datetime]. \n Example: 2010-08-14T13:00:00\n Please note that this value is expressed in the hotels local time zone\n"
    },
    "description": {
      "$ref": "#/definitions/QualifiedFreeText"
    },
    "acceptedPayments": {
      "$ref": "#/definitions/HotelProduct_PaymentPolicy"
    }
  }
}