Salesforce · Schema

DecisionTable1

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
conditionCriteria string
conditionType string
description string
id string
parameters array
setupName string
sourceCriteria array
sourceObject string
status string
View JSON Schema on GitHub

JSON Schema

salesforce-decision-table1-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "conditionCriteria": {
      "type": "string",
      "example": "example_value"
    },
    "conditionType": {
      "type": "string",
      "example": "example_value"
    },
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "parameters": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "object",
        "properties": {
          "fieldName": {
            "type": "string",
            "example": "example_value"
          },
          "isGroupByField": {
            "type": "boolean",
            "example": true
          },
          "operator": {
            "type": "string",
            "example": "example_value"
          },
          "sequence": {
            "type": "integer",
            "example": 10
          },
          "usage": {
            "type": "string",
            "example": "example_value"
          }
        },
        "required": [
          "fieldName",
          "isGroupByField",
          "usage"
        ]
      }
    },
    "setupName": {
      "type": "string",
      "example": "example_value"
    },
    "sourceCriteria": {
      "type": "array",
      "description": "",
      "example": [],
      "items": {
        "type": "string"
      }
    },
    "sourceObject": {
      "type": "string",
      "example": "example_value"
    },
    "status": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "conditionCriteria",
    "conditionType",
    "description",
    "id",
    "parameters",
    "setupName",
    "sourceCriteria",
    "sourceObject",
    "status"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DecisionTable1"
}