Salesforce · Schema

Designation

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
designationId string
percent integer
amount number
View JSON Schema on GitHub

JSON Schema

salesforce-designation-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "designationId": {
      "type": "string",
      "example": "500123"
    },
    "percent": {
      "type": "integer",
      "example": 10
    },
    "amount": {
      "type": "number",
      "example": 42.5
    }
  },
  "required": [
    "designationId",
    "percent",
    "amount"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Designation"
}