{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounts-upload-document-request-schema.json", "title": "UploadDocumentRequest", "description": "UploadDocumentRequest schema from Adyen API", "type": "object", "properties": { "documentContent": { "description": "The content of the document, in Base64-encoded string format.\n\nTo learn about document requirements, refer to [Verification checks](https://docs.adyen.com/marketplaces-and-platforms/classic/verification-checks).", "format": "byte", "type": "string" }, "documentDetail": { "description": "Details of the document being submitted.", "$ref": "#/components/schemas/DocumentDetail" } }, "required": [ "documentDetail", "documentContent" ] }