{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/accounts-get-tax-form-request-schema.json", "title": "GetTaxFormRequest", "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.", "format": "int32", "type": "integer" } }, "required": [ "accountHolderCode", "formType", "year" ] }