Salesforce · Schema
Status201-Success4
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| code | string | |
| decisionTable | object | |
| isSuccess | boolean | |
| message | string |
JSON Schema
{
"type": "object",
"properties": {
"code": {
"type": "string",
"example": "example_value"
},
"decisionTable": {
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"parameters": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
},
"sourceCriteria": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "string"
}
}
},
"required": [
"id",
"parameters",
"sourceCriteria"
]
},
"isSuccess": {
"type": "boolean",
"example": true
},
"message": {
"type": "string",
"example": "example_value"
}
},
"required": [
"code",
"decisionTable",
"isSuccess",
"message"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Status201-Success4"
}