Salesforce · Schema

Conditions

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
conditionsList array
View JSON Schema on GitHub

JSON Schema

salesforce-conditions-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "conditionsList": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "fieldName": {
            "type": "string",
            "example": "example_value"
          },
          "value": {
            "type": "boolean",
            "example": true
          }
        },
        "required": [
          "fieldName",
          "value"
        ]
      }
    }
  },
  "required": [
    "conditionsList"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Conditions"
}