Case-scoped evidence candidates visible to the acting side.
application/json
{
"type": "object",
"required": [
"data",
"requestId"
],
"properties": {
"data": {
"$ref": "#/components/schemas/EvidenceCandidateList",
"type": "object",
"additionalProperties": false,
"required": [
"schemaVersion",
"caseId",
"party",
"candidates"
],
"properties": {
"schemaVersion": {
"type": "string",
"const": "evidence-candidates-v2"
},
"caseId": {
"type": "string"
},
"party": {
"type": "string",
"enum": [
"claimant",
"respondent"
]
},
"candidates": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"required": [
"exportRecordId",
"sourcePartnerId",
"adopterPartnerId",
"externalExportId",
"exportVersion",
"receivedAt",
"superseded",
"artifacts"
],
"properties": {
"exportRecordId": {
"type": "string"
},
"sourcePartnerId": {
"type": "string"
},
"adopterPartnerId": {
"type": "string"
},
"externalExportId": {
"type": "string"
},
"exportVersion": {
"type": "integer",
"minimum": 1
},
"receivedAt": {
"type": "string",
"format": "date-time"
},
"superseded": {
"type": "boolean"
},
"artifacts": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true,
"required": [
"artifactRef",
"contentType",
"byteLength",
"sha256",
"adoptable",
"adoptedByThisParty"
],
"properties": {}
}
}
}
}
}
}
},
"requestId": {
"type": "string"
}
}
}