Adyen · Schema

DefenseReasonsResponse

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

adyen-defensereasonsresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefenseReasonsResponse",
  "title": "DefenseReasonsResponse",
  "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"
  ],
  "type": "object"
}