Properties
| Name | Type | Description |
|---|---|---|
| defenseDocumentTypes | array | Array of defense document types for a specific defense reason. Indicates the document types that you can submit to the schemes to defend this dispute, and whether they are required. |
| defenseReasonCode | string | The defense reason code that was selected to defend this dispute. |
| satisfied | boolean | Indicates if sufficient defense material has been supplied. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/DefenseReason",
"title": "DefenseReason",
"properties": {
"defenseDocumentTypes": {
"description": "Array of defense document types for a specific defense reason. Indicates the document types that you can submit to the schemes to defend this dispute, and whether they are required.",
"items": {
"$ref": "#/components/schemas/DefenseDocumentType"
},
"type": "array"
},
"defenseReasonCode": {
"description": "The defense reason code that was selected to defend this dispute.",
"type": "string"
},
"satisfied": {
"description": "Indicates if sufficient defense material has been supplied.",
"type": "boolean"
}
},
"required": [
"defenseReasonCode",
"satisfied"
],
"type": "object"
}