Salesforce · Schema
Variable
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| collection | boolean | |
| dataType | string | |
| description | string | |
| input | boolean | |
| name | string | |
| output | boolean | |
| type | string | |
| value | string |
JSON Schema
{
"type": "object",
"properties": {
"collection": {
"type": "boolean",
"example": true
},
"dataType": {
"type": "string",
"example": "example_value"
},
"description": {
"type": "string",
"example": "A sample description."
},
"input": {
"type": "boolean",
"example": true
},
"name": {
"type": "string",
"example": "Example Title"
},
"output": {
"type": "boolean",
"example": true
},
"type": {
"type": "string",
"example": "example_value"
},
"value": {
"type": "string",
"example": "example_value"
}
},
"required": [
"collection",
"dataType",
"description",
"input",
"name",
"output",
"type",
"value"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Variable"
}