Vistra · Schema

Vistra Incorporation Request

JSON Schema for a Vistra company incorporation request, covering entity details, stakeholders, share structure, and supporting documents for BVI and other supported jurisdictions.

ComplianceCorporate ServicesEntity ManagementFinanceFortune 500Legal

Properties

Name Type Description
jurisdiction string Target incorporation jurisdiction (e.g. BVI for British Virgin Islands)
companyName string Proposed company name for incorporation
entityType string Type of legal entity to incorporate
shareStructure object Company share capital structure
individuals array Individual stakeholders including directors, shareholders, and beneficial owners
corporates array Corporate stakeholders
documentIds array IDs of uploaded supporting documents
notes string Additional notes or special instructions
View JSON Schema on GitHub

JSON Schema

vistra-incorporation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/vistra/main/json-schema/vistra-incorporation-schema.json",
  "title": "Vistra Incorporation Request",
  "description": "JSON Schema for a Vistra company incorporation request, covering entity details, stakeholders, share structure, and supporting documents for BVI and other supported jurisdictions.",
  "type": "object",
  "required": ["jurisdiction", "companyName", "entityType"],
  "properties": {
    "jurisdiction": {
      "type": "string",
      "description": "Target incorporation jurisdiction (e.g. BVI for British Virgin Islands)",
      "enum": ["BVI"]
    },
    "companyName": {
      "type": "string",
      "description": "Proposed company name for incorporation"
    },
    "entityType": {
      "type": "string",
      "description": "Type of legal entity to incorporate",
      "enum": ["business_company", "llc", "limited_partnership"]
    },
    "shareStructure": {
      "type": "object",
      "description": "Company share capital structure",
      "properties": {
        "authorizedShares": {
          "type": "integer",
          "description": "Total number of authorized shares"
        },
        "parValue": {
          "type": "number",
          "description": "Par value per share"
        },
        "currency": {
          "type": "string",
          "description": "Currency code for par value (e.g. USD)"
        }
      }
    },
    "individuals": {
      "type": "array",
      "description": "Individual stakeholders including directors, shareholders, and beneficial owners",
      "items": {
        "type": "object",
        "required": ["firstName", "lastName", "role"],
        "properties": {
          "firstName": { "type": "string" },
          "lastName": { "type": "string" },
          "dateOfBirth": { "type": "string", "format": "date" },
          "nationality": { "type": "string" },
          "role": {
            "type": "string",
            "enum": ["director", "shareholder", "beneficial_owner", "secretary"]
          },
          "shares": { "type": "integer" },
          "documentIds": {
            "type": "array",
            "items": { "type": "string" }
          }
        }
      }
    },
    "corporates": {
      "type": "array",
      "description": "Corporate stakeholders",
      "items": {
        "type": "object",
        "properties": {
          "companyName": { "type": "string" },
          "jurisdiction": { "type": "string" },
          "registrationNumber": { "type": "string" },
          "role": {
            "type": "string",
            "enum": ["shareholder", "director"]
          },
          "shares": { "type": "integer" },
          "documentIds": {
            "type": "array",
            "items": { "type": "string" }
          }
        }
      }
    },
    "documentIds": {
      "type": "array",
      "description": "IDs of uploaded supporting documents",
      "items": { "type": "string" }
    },
    "notes": {
      "type": "string",
      "description": "Additional notes or special instructions"
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/vistra-incorporation"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.