Quandoo · JSON Structure

Quandoo Public Partner Api Merchant Vault Settings Dto Structure

MerchantVaultSettingsDto schema from Quandoo Public Partner API

Type: object Properties: 4 Required: 3
RestaurantReservationsBookingAvailabilityMerchantsMarketplace

MerchantVaultSettingsDto is a JSON Structure definition published by Quandoo, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id fee feeType feePercentageForTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/quandoo/refs/heads/main/json-structure/quandoo-public-partner-api-merchant-vault-settings-dto-structure.json",
  "name": "MerchantVaultSettingsDto",
  "description": "MerchantVaultSettingsDto schema from Quandoo Public Partner API",
  "type": "object",
  "required": [
    "fee",
    "feeType",
    "id"
  ],
  "properties": {
    "id": {
      "type": "uuid",
      "description": "The id of the vault settings.",
      "readOnly": true
    },
    "fee": {
      "type": "double",
      "description": "The fee customer should pay in the case of cancellation.",
      "readOnly": true
    },
    "feeType": {
      "type": "string",
      "description": "The type of the fee to pay.",
      "readOnly": true
    },
    "feePercentageForTime": {
      "type": "object",
      "description": "Fee percentage depending of the time of cancellation.",
      "additionalProperties": {
        "type": "integer",
        "format": "int32"
      }
    }
  }
}