Salesforce · Schema
CreateTableRequest
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| setupName | string | |
| fullName | string | |
| description | string | |
| sourceObject | string | |
| status | string | |
| conditionType | string | |
| conditionCriteria | string | |
| parameters | array |
JSON Schema
{
"type": "object",
"properties": {
"setupName": {
"type": "string",
"example": "example_value"
},
"fullName": {
"type": "string",
"example": "example_value"
},
"description": {
"type": "string",
"example": "A sample description."
},
"sourceObject": {
"type": "string",
"example": "example_value"
},
"status": {
"type": "string",
"example": "example_value"
},
"conditionType": {
"type": "string",
"example": "example_value"
},
"conditionCriteria": {
"type": "string",
"example": "example_value"
},
"parameters": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"fieldName": {
"type": "string",
"example": "example_value"
},
"usage": {
"type": "string",
"example": "example_value"
},
"operator": {
"type": "string",
"example": "example_value"
},
"sequence": {
"type": "string",
"example": "example_value"
}
},
"required": [
"fieldName",
"usage"
]
}
}
},
"required": [
"setupName",
"fullName",
"description",
"sourceObject",
"status",
"conditionType",
"conditionCriteria",
"parameters"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CreateTableRequest"
}