Salesforce · Schema

EligibleLoyaltyTier

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
tierGroup object
tier object
View JSON Schema on GitHub

JSON Schema

salesforce-eligible-loyalty-tier-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "tierGroup": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "example": "Example Title"
        },
        "id": {
          "type": "string",
          "example": "abc123"
        }
      },
      "required": [
        "name",
        "id"
      ]
    },
    "tier": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "example": "Example Title"
        },
        "id": {
          "type": "string",
          "example": "abc123"
        }
      },
      "required": [
        "name",
        "id"
      ]
    }
  },
  "required": [
    "tierGroup",
    "tier"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "EligibleLoyaltyTier"
}