Adyen · Schema

DefenseDocumentType

PaymentsFinancial ServicesFintech

Properties

Name Type Description
available boolean When **true**, you've successfully uploaded this type of defense document. When **false**, you haven't uploaded this defense document type.
defenseDocumentTypeCode string The document type code of the defense document.
requirementLevel string Indicates to what extent the defense document is required in the defense process. Possible values: * **Required**: You must supply the document. * **OneOrMore**: You must supply at least one of the do
View JSON Schema on GitHub

JSON Schema

adyen-defensedocumenttype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefenseDocumentType",
  "title": "DefenseDocumentType",
  "properties": {
    "available": {
      "description": "When **true**, you've successfully uploaded this type of defense document. When **false**, you haven't uploaded this defense document type.",
      "type": "boolean"
    },
    "defenseDocumentTypeCode": {
      "description": "The document type code of the defense document.",
      "type": "string"
    },
    "requirementLevel": {
      "description": "Indicates to what extent the defense document is required in the defense process.\n\nPossible values: \n\n* **Required**: You must supply the document.\n\n * **OneOrMore**: You must supply at least one of the documents with this label.\n\n* **Optional**: You can choose to supply the document.\n\n* **AlternativeRequired**: You must supply a generic defense document. To enable this functionality, contact our Support Team. When enabled, you can supply a generic defense document for all schemes.",
      "type": "string"
    }
  },
  "required": [
    "defenseDocumentTypeCode",
    "requirementLevel",
    "available"
  ],
  "type": "object"
}