{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/accounts-get-tax-form-request-structure.json", "description": "GetTaxFormRequest schema from Adyen API", "type": "object", "properties": { "accountHolderCode": { "description": "The account holder code you provided when you created the account holder.", "type": "string" }, "formType": { "description": "Type of the requested tax form. For example, 1099-K.", "type": "string" }, "year": { "description": "Applicable tax year in the YYYY format.", "type": "int32" } }, "required": [ "accountHolderCode", "formType", "year" ], "name": "GetTaxFormRequest" }