Salesforce · Schema
DebitPointsfromMembers
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| message | ['string', 'null'] | |
| outputParameters | object | |
| simulationDetails | object | |
| status | boolean |
JSON Schema
{
"type": "object",
"properties": {
"message": {
"type": "['string', 'null']",
"example": "example_value"
},
"outputParameters": {
"type": "object",
"properties": {
"outputParameters": {
"type": "object",
"properties": {
"results": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"PointsDebited": {
"type": "integer",
"example": 10
}
},
"required": [
"PointsDebited"
]
}
}
},
"required": [
"results"
]
}
},
"required": [
"outputParameters"
]
},
"simulationDetails": {
"type": "object",
"example": "example_value"
},
"status": {
"type": "boolean",
"example": true
}
},
"required": [
"message",
"outputParameters",
"simulationDetails",
"status"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "DebitPointsfromMembers"
}