Adyen · Schema

DefenseReasonsResponse

DefenseReasonsResponse schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
defenseReasons array The defense reasons that can be used to defend the dispute.
disputeServiceResult object The result of the dispute service.
View JSON Schema on GitHub

JSON Schema

disputes-defense-reasons-response-schema.json Raw ↑
{
  "$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"
  ]
}