Salesforce · Schema
Step
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| actionType | string | |
| assignment | object | |
| description | string | |
| name | string | |
| resultIncluded | boolean | |
| sequenceNumber | integer | |
| shouldExposeConditionDetails | boolean | |
| shouldExposeExecPathMsgOnly | boolean | |
| shouldShowExplExternally | boolean | |
| stepType | string |
JSON Schema
{
"type": "object",
"properties": {
"actionType": {
"type": "string",
"example": "example_value"
},
"assignment": {
"type": "object",
"properties": {
"assignedParameter": {
"type": "string",
"example": "example_value"
},
"expression": {
"type": "string",
"example": "example_value"
}
},
"required": [
"assignedParameter",
"expression"
]
},
"description": {
"type": "string",
"example": "A sample description."
},
"name": {
"type": "string",
"example": "Example Title"
},
"resultIncluded": {
"type": "boolean",
"example": true
},
"sequenceNumber": {
"type": "integer",
"example": 10
},
"shouldExposeConditionDetails": {
"type": "boolean",
"example": true
},
"shouldExposeExecPathMsgOnly": {
"type": "boolean",
"example": true
},
"shouldShowExplExternally": {
"type": "boolean",
"example": true
},
"stepType": {
"type": "string",
"example": "example_value"
}
},
"required": [
"actionType",
"assignment",
"description",
"name",
"resultIncluded",
"sequenceNumber",
"shouldExposeConditionDetails",
"shouldExposeExecPathMsgOnly",
"shouldShowExplExternally",
"stepType"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Step"
}