Salesforce · Schema

runDecisionMatrix

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
actionName string
errors ['string', 'null']
isSuccess boolean
outputValues object
version integer
View JSON Schema on GitHub

JSON Schema

salesforce-run-decision-matrix-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "actionName": {
      "type": "string",
      "example": "example_value"
    },
    "errors": {
      "type": "['string', 'null']",
      "example": "example_value"
    },
    "isSuccess": {
      "type": "boolean",
      "example": true
    },
    "outputValues": {
      "type": "object",
      "properties": {
        "myColumnOutput": {
          "type": "string",
          "example": "example_value"
        }
      },
      "required": [
        "myColumnOutput"
      ]
    },
    "version": {
      "type": "integer",
      "example": 10
    }
  },
  "required": [
    "actionName",
    "errors",
    "isSuccess",
    "outputValues",
    "version"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "runDecisionMatrix"
}