Adyen · Schema

GetTaxFormResponse

GetTaxFormResponse schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
content string The content of the tax form in Base64 format.
contentType string The content type of the tax form. Possible values: * **application/pdf**
View JSON Schema on GitHub

JSON Schema

configuration-get-tax-form-response-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/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"
  ]
}