Adyen · Schema

DefenseDocument

DefenseDocument schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
content string The content of the defense document.
contentType string The content type of the defense document.
defenseDocumentTypeCode string The document type code of the defense document.
View JSON Schema on GitHub

JSON Schema

disputes-defense-document-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-document-schema.json",
  "title": "DefenseDocument",
  "description": "DefenseDocument schema from Adyen API",
  "type": "object",
  "properties": {
    "content": {
      "description": "The content of the defense document.",
      "format": "byte",
      "type": "string"
    },
    "contentType": {
      "description": "The content type of the defense document.",
      "type": "string"
    },
    "defenseDocumentTypeCode": {
      "description": "The document type code of the defense document.",
      "type": "string"
    }
  },
  "required": [
    "defenseDocumentTypeCode",
    "contentType",
    "content"
  ]
}