Salesforce · Schema
Status200-UpdateCommitmentRequestValidationFailure1
Fortune 500AIAnalyticsCloudCommerceCRMCustomer ServiceEnterpriseMarketingPlatformSales
Properties
| Name | Type | Description |
|---|---|---|
| successes | integer | |
| failures | integer | |
| notProcessed | integer | |
| details | array |
JSON Schema
{
"type": "object",
"properties": {
"successes": {
"type": "integer",
"example": 10
},
"failures": {
"type": "integer",
"example": 10
},
"notProcessed": {
"type": "integer",
"example": 10
},
"details": {
"type": "array",
"description": "",
"example": [],
"items": {
"type": "object",
"properties": {
"success": {
"type": "boolean",
"example": true
},
"errors": {
"type": "object",
"properties": {
"field": {
"type": "string",
"example": "example_value"
},
"message": {
"type": "string",
"example": "example_value"
}
},
"required": [
"field",
"message"
]
},
"links": {
"type": "object",
"properties": {
"giftcommitment": {
"type": "object",
"properties": {
"href": {
"type": "string",
"example": "example_value"
},
"id": {
"type": "string",
"example": "abc123"
}
},
"required": [
"href",
"id"
]
},
"paymentinstrument": {
"type": "object",
"properties": {
"href": {
"type": "string",
"example": "example_value"
},
"id": {
"type": "string",
"example": "abc123"
}
},
"required": [
"href",
"id"
]
}
},
"required": [
"giftcommitment",
"paymentinstrument"
]
}
},
"required": [
"success"
]
}
}
},
"required": [
"successes",
"failures",
"notProcessed",
"details"
],
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Status200-UpdateCommitmentRequestValidationFailure1"
}