Salesforce · Schema

RedeemVoucher

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
currencyIsoCode string
remainingAmount number
View JSON Schema on GitHub

JSON Schema

salesforce-redeem-voucher-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "currencyIsoCode": {
      "type": "string",
      "example": "example_value"
    },
    "remainingAmount": {
      "type": "number",
      "example": 42.5
    }
  },
  "required": [
    "currencyIsoCode",
    "remainingAmount"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "RedeemVoucher"
}