Adyen · JSON Structure

Legal Entity Unincorporated Partnership Structure

UnincorporatedPartnership schema from Adyen API

Type: object Properties: 12 Required: 4
PaymentsFinancial ServicesFintech

UnincorporatedPartnership is a JSON Structure definition published by Adyen, describing 12 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

countryOfGoverningLaw dateOfIncorporation description doingBusinessAs name principalPlaceOfBusiness registeredAddress registrationNumber taxInformation type vatAbsenceReason vatNumber

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/legal-entity-unincorporated-partnership-structure.json",
  "description": "UnincorporatedPartnership schema from Adyen API",
  "type": "object",
  "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 Legal Arrangement.",
      "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 Partnership.\n\nPossible values:\n*  **limitedPartnership**\n*  **generalPartnership**\n*  **familyPartnership**\n*  **commercialPartnership**\n*  **publicPartnership**\n*  **otherPartnership**\n*  **gbr**\n*  **gmbh**\n*  **kgaa**\n*  **cv**\n*  **vof**\n*  **maatschap**\n*  **privateFundLimitedPartnership**\n*  **businessTrustEntity**\n*  **businessPartnership**\n\n",
      "enum": [
        "limitedPartnership",
        "generalPartnership",
        "familyPartnership",
        "commercialPartnership",
        "publicPartnership",
        "otherPartnership",
        "gbr",
        "gmbh",
        "kgaa",
        "cv",
        "vof",
        "maatschap",
        "privateFundLimitedPartnership",
        "businessTrustEntity",
        "businessPartnership"
      ],
      "type": "string"
    },
    "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"
  ],
  "name": "UnincorporatedPartnership"
}