Shareworks · Schema
Stock Filing Designation Body
Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies
Properties
| Name | Type | Description |
|---|---|---|
| filingDate | string | Date on which the stock filing occurred |
| stockDesignationName | string | Name for the stock designation |
| classOfSecurities | string | Whether the class is common or preferred stock |
| fundingRound | integer | Funding round number for the stock designation |
| initialNumberOfAuthorizedShares | number | Total number of authorized shares for the stock designation |
| parValue | number | Par value for the stock designation |
| pricePerShare | number | Price per share for the stock designation |
| convertible | boolean | Whether the stock designation is convertible |
| convertsToStockDesignationId | integer | Identifier for the stock designation which the stock designation converts to |
| conversionRatioAntecedent | number | The antecedent of the conversion ratio. E.g. 2 for a 2:1 conversion (2 converted shares for each original share) |
| conversionRatioConsequent | number | The consequent of the conversion ratio. E.g. 1 for a 2:1 conversion (2 converted shares for each original share) |
| rounding | string | Rounding type used when converting shares from the stock designation |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/StockFilingWithNewDesignationCreationRequest.json",
"title": "Stock Filing Designation Body",
"required": [
"classOfSecurities",
"convertible",
"filingDate",
"initialNumberOfAuthorizedShares",
"parValue",
"stockDesignationName"
],
"type": "object",
"properties": {
"filingDate": {
"type": "string",
"description": "Date on which the stock filing occurred",
"format": "date"
},
"stockDesignationName": {
"type": "string",
"description": "Name for the stock designation"
},
"classOfSecurities": {
"type": "string",
"description": "Whether the class is common or preferred stock",
"enum": [
"COMMON",
"PREFERRED",
"COMMON_STOCK",
"PREFERRED_STOCK"
]
},
"fundingRound": {
"type": "integer",
"description": "Funding round number for the stock designation",
"format": "int32"
},
"initialNumberOfAuthorizedShares": {
"type": "number",
"description": "Total number of authorized shares for the stock designation",
"format": "double"
},
"parValue": {
"type": "number",
"description": "Par value for the stock designation",
"format": "double"
},
"pricePerShare": {
"type": "number",
"description": "Price per share for the stock designation",
"format": "double"
},
"convertible": {
"type": "boolean",
"description": "Whether the stock designation is convertible"
},
"convertsToStockDesignationId": {
"type": "integer",
"description": "Identifier for the stock designation which the stock designation converts to",
"format": "int32"
},
"conversionRatioAntecedent": {
"type": "number",
"description": "The antecedent of the conversion ratio. E.g. 2 for a 2:1 conversion (2 converted shares for each original share)",
"format": "double"
},
"conversionRatioConsequent": {
"type": "number",
"description": "The consequent of the conversion ratio. E.g. 1 for a 2:1 conversion (2 converted shares for each original share)",
"format": "double"
},
"rounding": {
"type": "string",
"description": "Rounding type used when converting shares from the stock designation",
"enum": [
"NORMAL",
"UP",
"DOWN"
]
}
}
}