Adyen · Schema

Trust

PaymentsFinancial ServicesFintech

Properties

Name Type Description
countryOfGoverningLaw string The two-character [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code of the governing country.
dateOfIncorporation string The date when the legal arrangement was incorporated in YYYY-MM-DD format.
description string Short description about the trust.
doingBusinessAs string The registered name, if different from the `name`.
name string The legal name.
principalPlaceOfBusiness object The business address. Required if the principal place of business is different from the `registeredAddress`.
registeredAddress object The address registered at the registrar, such as the Chamber of Commerce.
registrationNumber string The registration number.
taxInformation array The tax information of the entity.
type string Type of trust. Possible values for Australian trusts: **cashManagementTrust**, **corporateUnitTrust**, **deceasedEstate**, **discretionaryInvestmentTrust**, **discretionaryServicesManagementTrust**, *
undefinedBeneficiaryInfo array The undefined beneficiary information of the entity.
vatAbsenceReason string The reason for not providing a VAT number. Possible values: **industryExemption**, **belowTaxThreshold**.
vatNumber string The VAT number.
View JSON Schema on GitHub

JSON Schema

adyen-trust-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Trust",
  "title": "Trust",
  "properties": {
    "countryOfGoverningLaw": {
      "description": "The two-character [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) country code of the governing country.",
      "type": "string"
    },
    "dateOfIncorporation": {
      "x-addedInVersion": "2",
      "description": "The date when the legal arrangement was incorporated in YYYY-MM-DD format.",
      "type": "string"
    },
    "description": {
      "x-addedInVersion": "3",
      "description": "Short description about the trust.",
      "type": "string"
    },
    "doingBusinessAs": {
      "description": "The registered name, if different from the `name`.",
      "type": "string"
    },
    "name": {
      "description": "The legal name.",
      "type": "string"
    },
    "principalPlaceOfBusiness": {
      "description": "The business address. Required if the principal place of business is different from the `registeredAddress`.",
      "$ref": "#/components/schemas/Address"
    },
    "registeredAddress": {
      "description": "The address registered at the registrar, such as the Chamber of Commerce.",
      "$ref": "#/components/schemas/Address"
    },
    "registrationNumber": {
      "description": "The registration number.",
      "type": "string"
    },
    "taxInformation": {
      "x-addedInVersion": "2",
      "description": "The tax information of the entity.",
      "items": {
        "$ref": "#/components/schemas/TaxInformation"
      },
      "type": "array"
    },
    "type": {
      "description": "Type of trust.\n\nPossible values for Australian trusts: **cashManagementTrust**, **corporateUnitTrust**, **deceasedEstate**, **discretionaryInvestmentTrust**, **discretionaryServicesManagementTrust**, **discretionaryTradingTrust**, **firstHomeSaverAccountsTrust**, **fixedTrust**, **fixedUnitTrust**, **hybridTrust**, **listedPublicUnitTrust**, **otherTrust**, **pooledSuperannuationTrust**, **publicTradingTrust**, **unlistedPublicUnitTrust**.",
      "enum": [
        "cashManagementTrust",
        "corporateUnitTrust",
        "deceasedEstate",
        "discretionaryInvestmentTrust",
        "discretionaryServicesManagementTrust",
        "discretionaryTradingTrust",
        "firstHomeSaverAccountsTrust",
        "fixedTrust",
        "fixedUnitTrust",
        "hybridTrust",
        "listedPublicUnitTrust",
        "otherTrust",
        "pooledSuperannuationTrust",
        "publicTradingTrust",
        "unlistedPublicUnitTrust"
      ],
      "type": "string"
    },
    "undefinedBeneficiaryInfo": {
      "x-addedInVersion": "2",
      "description": "The undefined beneficiary information of the entity.",
      "items": {
        "$ref": "#/components/schemas/UndefinedBeneficiary"
      },
      "type": "array"
    },
    "vatAbsenceReason": {
      "description": "The reason for not providing a VAT number.\n\nPossible values: **industryExemption**, **belowTaxThreshold**.",
      "enum": [
        "industryExemption",
        "belowTaxThreshold"
      ],
      "type": "string"
    },
    "vatNumber": {
      "description": "The VAT number.",
      "type": "string"
    }
  },
  "required": [
    "name",
    "countryOfGoverningLaw",
    "registeredAddress",
    "type"
  ],
  "type": "object"
}