Guide: Tabular Data

Last updated

Last updated
{
shareholders: {
name: string; // name of the shareholder
common: string | null; // number of common shares the shareholder owns,
null if not available
}[]
}[
{
"pageRange": "1",
"extraction": {
"shareholders": [
{
"name": "Founder A",
"common": "250,000"
},
{
"name": "Founder B",
"common": "150,000"
},
{
"name": "Founder C",
"common": "80,000"
},
{
"name": "Founder D",
"common": "70,000"
},
{
"name": "Employee Shares Option Pool",
"common": "100,000"
},
{
"name": "Investors per stage",
"common": null
}
]
}
}
]