Salesforce · Schema
Version
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| apiName | string | |
| enabled | boolean | |
| id | string | |
| name | string | |
| showExplExternally | boolean | |
| startDate | string | |
| steps | array | |
| variables | array | |
| versionNumber | integer |
JSON Schema
{
"type": "object",
"properties": {
"apiName": {
"type": "string",
"example": "example_value"
},
"enabled": {
"type": "boolean",
"example": true
},
"id": {
"type": "string",
"example": "abc123"
},
"name": {
"type": "string",
"example": "Example Title"
},
"showExplExternally": {
"type": "boolean",
"example": true
},
"startDate": {
"type": "string",
"example": "example_value"
},
"steps": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"variables": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"versionNumber": {
"type": "integer",
"example": 10
}
},
"required": [
"apiName",
"enabled",
"id",
"name",
"showExplExternally",
"startDate",
"steps",
"variables",
"versionNumber"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Version"
}