Shareworks · Schema
Authorized Capital Response
Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies
Properties
| Name | Type | Description |
|---|---|---|
| companyId | integer | Identifier for the company |
| totalAuthorizedShares | number | Total shares authorized across all types of securities |
| totalOutstandingShares | number | Total outstanding shares across all types of securities |
| totalCommonStockEquivalentShares | number | Total common equivalent (a.k.a. fully diluted) shares across all types of securities |
| percentageOfFullyDilutedOutstandingShares | number | Percentage of fully diluted outstanding shares across all types of securities |
| percentageOfFullyDilutedAvailableShares | number | Percentage of fully diluted available shares across all types of securities |
| currentFMV | number | The fair market value for the company per share (usually the latest 409A valuation for private companies) |
| classesOfSecurities | array | List of summary information for all classes of securities for the company |
| warrants | object | |
| plans | array | List of summary information for all plans for the company |
| certificatedShares | boolean | Whether the stock certificates are paper (value 'false' indicates they are digital) |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/AuthorizedCapitalDetails.json",
"title": "Authorized Capital Response",
"required": [
"certificatedShares",
"classesOfSecurities",
"companyId",
"percentageOfFullyDilutedAvailableShares",
"percentageOfFullyDilutedOutstandingShares",
"plans",
"totalAuthorizedShares",
"totalCommonStockEquivalentShares",
"totalOutstandingShares",
"warrants"
],
"type": "object",
"properties": {
"companyId": {
"type": "integer",
"description": "Identifier for the company",
"format": "int32"
},
"totalAuthorizedShares": {
"type": "number",
"description": "Total shares authorized across all types of securities",
"format": "double"
},
"totalOutstandingShares": {
"type": "number",
"description": "Total outstanding shares across all types of securities",
"format": "double"
},
"totalCommonStockEquivalentShares": {
"type": "number",
"description": "Total common equivalent (a.k.a. fully diluted) shares across all types of securities",
"format": "double"
},
"percentageOfFullyDilutedOutstandingShares": {
"type": "number",
"description": "Percentage of fully diluted outstanding shares across all types of securities",
"format": "double"
},
"percentageOfFullyDilutedAvailableShares": {
"type": "number",
"description": "Percentage of fully diluted available shares across all types of securities",
"format": "double"
},
"currentFMV": {
"type": "number",
"description": "The fair market value for the company per share (usually the latest 409A valuation for private companies)",
"format": "double"
},
"classesOfSecurities": {
"type": "array",
"description": "List of summary information for all classes of securities for the company",
"items": {
"$ref": "#/components/schemas/ClassOfSecuritiesSummaryDetails"
}
},
"warrants": {
"$ref": "#/components/schemas/WarrantsSummaryDetails"
},
"plans": {
"type": "array",
"description": "List of summary information for all plans for the company",
"items": {
"$ref": "#/components/schemas/PlanSummaryDetails"
}
},
"certificatedShares": {
"type": "boolean",
"description": "Whether the stock certificates are paper (value 'false' indicates they are digital)"
}
}
}