Shareworks · Schema
Stock Certificate Body
Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies
Properties
| Name | Type | Description |
|---|---|---|
| stockDesignationId | integer | Identifier for the stock designation |
| effectiveDate | string | Effective date for the stock certificate |
| quantity | number | Quantity of shares for the stock certificate |
| issuePrice | number | Issue price (a.k.a. strike price) for the stock certificate |
| boardApprovalDate | string | Board approval date for the stock certificate (if not supplied, the certificate will be created with an unapproved status) |
| stockCertificateNumber | string | Number for the stock certificate |
| vestingScheduleId | integer | Identifier for the vesting schedule |
| vestingStartDate | string | Vesting base or commencement date for the vesting schedule |
| manualVestingRows | array | List of all manual vesting rows for the stock certificate, specified when using a manual vesting schedule |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/StockCertificateCrudRequest.json",
"title": "Stock Certificate Body",
"required": [
"effectiveDate",
"issuePrice",
"quantity",
"stockCertificateNumber",
"stockDesignationId"
],
"type": "object",
"properties": {
"stockDesignationId": {
"type": "integer",
"description": "Identifier for the stock designation",
"format": "int32"
},
"effectiveDate": {
"type": "string",
"description": "Effective date for the stock certificate",
"format": "date"
},
"quantity": {
"type": "number",
"description": "Quantity of shares for the stock certificate",
"format": "double"
},
"issuePrice": {
"type": "number",
"description": "Issue price (a.k.a. strike price) for the stock certificate",
"format": "double"
},
"boardApprovalDate": {
"type": "string",
"description": "Board approval date for the stock certificate (if not supplied, the certificate will be created with an unapproved status)",
"format": "date"
},
"stockCertificateNumber": {
"type": "string",
"description": "Number for the stock certificate"
},
"vestingScheduleId": {
"type": "integer",
"description": "Identifier for the vesting schedule",
"format": "int32"
},
"vestingStartDate": {
"type": "string",
"description": "Vesting base or commencement date for the vesting schedule",
"format": "date"
},
"manualVestingRows": {
"type": "array",
"description": "List of all manual vesting rows for the stock certificate, specified when using a manual vesting schedule",
"items": {
"$ref": "#/components/schemas/ManualVestingRowCrudRequest"
}
}
}
}