Raw schema
{
"type": "object",
"properties": {
"draftId": {
"type": "string",
"format": "uuid",
"description": "Draft id returned by create_incorporation_draft"
},
"verificationToken": {
"type": "string",
"description": "Token from verify_email_otp for the email that created the draft"
},
"companyName": {
"type": "string",
"maxLength": 300,
"description": "Preferred company name"
},
"alternativeCompanyNames": {
"type": "array",
"items": {
"type": "string",
"maxLength": 300
},
"maxItems": 10,
"description": "Fallback company names in priority order"
},
"jurisdiction": {
"type": "string",
"maxLength": 100,
"description": "Target jurisdiction, e.g. \"BVI\", \"CAYMAN\", \"PANAMA\" — free text is accepted"
},
"entityType": {
"type": "string",
"maxLength": 100,
"description": "e.g. \"LTD\", \"FOUNDATION\", \"LLC\" — free text is accepted"
},
"founders": {
"type": "array",
"items": {
"type": "object",
"properties": {
"fullName": {
"type": "string",
"maxLength": 200
},
"email": {
"type": "string",
"maxLength": 320,
"description": "Founder's contact email"
},
"nationality": {
"type": "string",
"maxLength": 100,
"description": "Nationality or citizenship, free text"
},
"role": {
"type": "string",
"maxLength": 100,
"description": "e.g. \"Director\", \"Shareholder\", \"CEO\""
},
"shareAmount": {
"type": "number",
"minimum": 0,
"description": "Number of shares allocated to this founder"
}
},
"additionalProperties": false,
"description": "Founder details — every field optional"
},
"maxItems": 50,
"description": "Founders / shareholders / directors"
},
"totalShares": {
"type": "number",
"exclusiveMinimum": 0,
"description": "Total shares to be issued"
},
"parValue": {
"type": "number",
"minimum": 0,
"description": "Par value per share"
},
"currency": {
"type": "string",
"maxLength": 10,
"description": "Share capital currency, e.g. \"USD\""
},
"businessDescription": {
"type": "string",
"maxLength": 5000,
"description": "What the company will do"
},
"urgency": {
"type": "string",
"maxLength": 500,
"description": "Timeline constraints, e.g. \"needed before token launch July 1\""
},
"notes": {
"type": "string",
"maxLength": 10000,
"description": "Anything else relevant: existing structures, PEP status, special requests"
}
},
"required": [
"draftId",
"verificationToken"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}