Upvest · JSON Structure

Investment Api Tax Residency Create Structure

Request body for creating a tax residency record.

Type: object Properties: 2 Required: 1
Banking InfrastructureFintechInvestmentsSecuritiesFractional InvestingCustodyWealth Management

TaxResidencyCreate is a JSON Structure definition published by Upvest, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

country tax_identification_number

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/upvest/refs/heads/main/json-structure/investment-api-tax-residency-create-structure.json",
  "name": "TaxResidencyCreate",
  "description": "Request body for creating a tax residency record.",
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "The country of tax residency as an ISO 3166-1 alpha-2 code.",
      "pattern": "^[A-Z]{2}$",
      "example": "DE"
    },
    "tax_identification_number": {
      "type": "string",
      "description": "The tax identification number in the given country.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    }
  },
  "required": [
    "country"
  ]
}