Adyen · Schema

TaxReportingClassification

PaymentsFinancial ServicesFintech

Properties

Name Type Description
businessType string The organization's business type. Possible values: **other**, **listedPublicCompany**, **subsidiaryOfListedPublicCompany**, **governmentalOrganization**, **internationalOrganization**, **financialInst
financialInstitutionNumber string The Global Intermediary Identification Number (GIIN) required for FATCA. Only required if the organization is a US financial institution and the `businessType` is **financialInstitution**.
mainSourceOfIncome string The organization's main source of income. Possible values: **businessOperation**, **realEstateSales**, **investmentInterestOrRoyalty**, **propertyRental**, **other**.
type string The tax reporting classification type. Possible values: **nonFinancialNonReportable**, **financialNonReportable**, **nonFinancialActive**, **nonFinancialPassive**.
View JSON Schema on GitHub

JSON Schema

adyen-taxreportingclassification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaxReportingClassification",
  "title": "TaxReportingClassification",
  "properties": {
    "businessType": {
      "description": "The organization's business type.\n\nPossible values: **other**, **listedPublicCompany**, **subsidiaryOfListedPublicCompany**, **governmentalOrganization**, **internationalOrganization**, **financialInstitution**.",
      "enum": [
        "other",
        "listedPublicCompany",
        "subsidiaryOfListedPublicCompany",
        "governmentalOrganization",
        "internationalOrganization",
        "financialInstitution."
      ],
      "type": "string"
    },
    "financialInstitutionNumber": {
      "description": "The Global Intermediary Identification Number (GIIN) required for FATCA. Only required if the organization is a US financial institution and the `businessType` is **financialInstitution**.",
      "type": "string"
    },
    "mainSourceOfIncome": {
      "description": "The organization's main source of income.\n\nPossible values: **businessOperation**, **realEstateSales**, **investmentInterestOrRoyalty**, **propertyRental**, **other**.",
      "enum": [
        "businessOperation",
        "realEstateSales",
        "investmentInterestOrRoyalty",
        "propertyRental",
        "other"
      ],
      "type": "string"
    },
    "type": {
      "description": "The tax reporting classification type.\n\nPossible values: **nonFinancialNonReportable**, **financialNonReportable**, **nonFinancialActive**, **nonFinancialPassive**.",
      "enum": [
        "nonFinancialNonReportable",
        "financialNonReportable",
        "nonFinancialActive",
        "nonFinancialPassive"
      ],
      "type": "string"
    }
  },
  "type": "object"
}