Adyen · JSON Structure

Disputes Defense Reason Structure

DefenseReason schema from Adyen API

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

DefenseReason is a JSON Structure definition published by Adyen, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

defenseDocumentTypes defenseReasonCode satisfied

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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"
}