Skip to main content

CapTableHistory

History of cap tables

type CapTableHistory {
latest: CapTable!
all: [CapTable!]
shareholders: [Shareholder!]
publicationdate: String!
madeupdate: String!
link: AWSURL!
}

Fields

latest ● CapTable!

Latest cap table

all ● [CapTable!]

All cap tables

shareholders ● [Shareholder!]

All shareholders

publicationdate ● String!

Date of publication of the latest cap table document

madeupdate ● String!

Made up date of the latest cap table document

link ● AWSURL!

Link to the document on Companies House

Example

{
"latest": {
"shareholders": [
{
"name": "INVESTOR NAME",
"amount": 1000,
"ownership": 20.5,
"founder": true
}
],
"date": "2020-01-01"
},
"all": [
{
"shareholders": [
{
"name": "INVESTOR NAME",
"amount": 1000,
"ownership": 20.5,
"founder": true
}
],
"date": "2020-01-01"
}
],
"shareholders": [
{
"name": "INVESTOR NAME",
"amount": 1000,
"ownership": 20.5,
"founder": true
}
],
"publicationdate": "2020-01-01",
"madeupdate": "2020-01-01"
}

Member Of

Company object ● CompanySearchResult object