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