PushTopicInput

AutomationCloudCRMEnterpriseSales

Properties

Name Type Description
Name string
Query string
ApiVersion number
IsActive boolean
NotifyForFields string
NotifyForOperationCreate boolean
NotifyForOperationUpdate boolean
NotifyForOperationDelete boolean
NotifyForOperationUndelete boolean
Description string
View JSON Schema on GitHub

JSON Schema

salesforce-automation-pushtopicinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PushTopicInput",
  "title": "PushTopicInput",
  "type": "object",
  "properties": {
    "Name": {
      "type": "string",
      "maxLength": 25
    },
    "Query": {
      "type": "string"
    },
    "ApiVersion": {
      "type": "number"
    },
    "IsActive": {
      "type": "boolean"
    },
    "NotifyForFields": {
      "type": "string",
      "enum": [
        "Select",
        "Where",
        "Referenced",
        "All"
      ]
    },
    "NotifyForOperationCreate": {
      "type": "boolean"
    },
    "NotifyForOperationUpdate": {
      "type": "boolean"
    },
    "NotifyForOperationDelete": {
      "type": "boolean"
    },
    "NotifyForOperationUndelete": {
      "type": "boolean"
    },
    "Description": {
      "type": "string"
    }
  }
}