Salesforce · Schema

InvokeRequest

Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales

Properties

Name Type Description
datasetLinkName string
conditions array
View JSON Schema on GitHub

JSON Schema

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