GetTaxFormResponse schema from Adyen API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/configuration-get-tax-form-response-schema.json", "title": "GetTaxFormResponse", "description": "GetTaxFormResponse schema from Adyen API", "type": "object", "properties": { "content": { "description": "The content of the tax form in Base64 format.", "format": "byte", "type": "string" }, "contentType": { "description": "The content type of the tax form.\n\nPossible values:\n* **application/pdf**\n\n", "enum": [ "application/pdf" ], "type": "string" } }, "required": [ "content" ] }