Capital
The Capital object represents the share capital structure of an entity.
Fields
| Field |
Type |
Description |
capitalPaid |
number |
Paid-up capital amount |
capitalTotal |
number |
Total authorized / registered capital |
currency |
string |
Currency code (e.g. EUR, GBP, USD) |
numberOfShares |
number |
Total number of shares issued |
shareValue |
number |
Nominal value per share |
shareClasses |
ShareClass[] |
Breakdown by share class |
ShareClass object
| Field |
Type |
Description |
class |
string |
Share class name (e.g. Ordinary, Preferred) |
count |
number |
Number of shares in this class |
Example
{
"capitalTotal": 1000000,
"capitalPaid": 500000,
"currency": "EUR",
"numberOfShares": 10000,
"shareValue": 100,
"shareClasses": [
{ "class": "Ordinary", "count": 8000 },
{ "class": "Preferred", "count": 2000 }
]
}