{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/disputes-defense-reason-structure.json", "description": "DefenseReason schema from Adyen API", "type": "object", "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" ], "name": "DefenseReason" }