Upvest · JSON Structure

Investment Api Tax Residency Structure

A tax residency record for a user.

Type: object Properties: 4
Banking InfrastructureFintechInvestmentsSecuritiesFractional InvestingCustodyWealth Management

TaxResidency is a JSON Structure definition published by Upvest, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id country tax_identification_number created_at

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-structure.json",
  "name": "TaxResidency",
  "description": "A tax residency record for a user.",
  "type": "object",
  "properties": {
    "id": {
      "type": "uuid",
      "description": "The unique identifier.",
      "example": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
    },
    "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"
    },
    "created_at": {
      "type": "datetime",
      "description": "When the record was created.",
      "example": "2025-03-15T14:30:00Z"
    }
  }
}