{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/disputes-defense-reasons-response-schema.json",
"title": "DefenseReasonsResponse",
"description": "DefenseReasonsResponse schema from Adyen API",
"type": "object",
"properties": {
"defenseReasons": {
"description": "The defense reasons that can be used to defend the dispute.",
"items": {
"$ref": "#/components/schemas/DefenseReason"
},
"type": "array"
},
"disputeServiceResult": {
"description": "The result of the dispute service.",
"$ref": "#/components/schemas/DisputeServiceResult"
}
},
"required": [
"disputeServiceResult"
]
}