Salesforce · Schema
Record10
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| attributes | object | |
| Id | string | |
| DeveloperName | string | |
| EventChannel | string | |
| FilterExpression | ['string', 'null'] | |
| SelectedEntity | string |
JSON Schema
{
"type": "object",
"properties": {
"attributes": {
"type": "object",
"properties": {
"type": {
"type": "string",
"example": "example_value"
},
"url": {
"type": "string",
"example": "https://www.example.com"
}
},
"required": [
"type",
"url"
]
},
"Id": {
"type": "string",
"example": "abc123"
},
"DeveloperName": {
"type": "string",
"example": "example_value"
},
"EventChannel": {
"type": "string",
"example": "example_value"
},
"FilterExpression": {
"type": "['string', 'null']",
"example": "example_value"
},
"SelectedEntity": {
"type": "string",
"example": "example_value"
}
},
"required": [
"attributes",
"Id",
"DeveloperName",
"EventChannel",
"FilterExpression",
"SelectedEntity"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Record10"
}