Immutable validation or execution attempt.
application/json
{
"type": "object",
"required": [
"data",
"requestId"
],
"properties": {
"data": {
"$ref": "#/components/schemas/PartnerSettlementAttempt",
"type": "object",
"additionalProperties": false,
"required": [
"id",
"partnerId",
"caseId",
"bindingId",
"bindingDigest",
"evaluationDigest",
"dispositionId",
"awardRevision",
"awardHash",
"outcomeCode",
"action",
"amountMinorUnits",
"allocations",
"currency",
"dryRun",
"status",
"createdAt"
],
"properties": {
"id": {
"type": "string"
},
"partnerId": {
"type": "string"
},
"caseId": {
"type": "string"
},
"bindingId": {
"type": "string"
},
"operationId": {
"type": "string"
},
"operationKey": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
},
"bindingDigest": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
},
"evaluationDigest": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
},
"dispositionId": {
"type": "string"
},
"awardRevision": {
"type": "integer",
"minimum": 0
},
"awardHash": {
"type": "string",
"pattern": "^[a-f0-9]{64}$"
},
"outcomeCode": {
"type": "string"
},
"action": {
"type": "string",
"enum": [
"release_to_claimant",
"release_to_respondent",
"allocate_by_award",
"none"
]
},
"amountMinorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
},
"allocations": {
"type": "array",
"maxItems": 2,
"items": {
"$ref": "#/components/schemas/PartnerSettlementAllocation",
"type": "object",
"additionalProperties": false,
"required": [
"recipient",
"principalId",
"amountMinorUnits"
],
"properties": {
"recipient": {
"type": "string",
"enum": [
"claimant",
"respondent"
]
},
"principalId": {
"type": "string"
},
"amountMinorUnits": {
"type": "string",
"pattern": "^(0|[1-9][0-9]{0,77})$"
}
}
}
},
"currency": {
"type": "string",
"const": "USD"
},
"dryRun": {
"type": "boolean"
},
"status": {
"type": "string",
"enum": [
"validated",
"manual_action_required",
"callback_required",
"completed",
"failed",
"blocked",
"unknown_outcome"
]
},
"adapterReceipt": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"failureCode": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
}
}
},
"requestId": {
"type": "string"
}
}
}