Shareworks · Schema
Company Board Detailed Response
Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies
Properties
| Name | Type | Description |
|---|---|---|
| boardId | integer | Identifier for the company board |
| maximumSize | integer | Maximum number of stakeholders that may be on the board at one time |
| minimumSize | integer | Minimum number of stakeholders that must be on the board at one time |
| setAtSize | integer | The default, general, or target value at which the board is set and from which vacancies are relatively calculated |
| quorumSize | integer | Minimum amount of members required to be present to have a quorum |
| appointments | array | List of all company board appointments |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/CompanyBoardDetailsWithAppointments.json",
"title": "Company Board Detailed Response",
"required": [
"appointments",
"boardId",
"maximumSize",
"minimumSize",
"setAtSize"
],
"type": "object",
"properties": {
"boardId": {
"type": "integer",
"description": "Identifier for the company board",
"format": "int32"
},
"maximumSize": {
"type": "integer",
"description": "Maximum number of stakeholders that may be on the board at one time",
"format": "int64"
},
"minimumSize": {
"type": "integer",
"description": "Minimum number of stakeholders that must be on the board at one time",
"format": "int64"
},
"setAtSize": {
"type": "integer",
"description": "The default, general, or target value at which the board is set and from which vacancies are relatively calculated",
"format": "int64"
},
"quorumSize": {
"type": "integer",
"description": "Minimum amount of members required to be present to have a quorum",
"format": "int64"
},
"appointments": {
"type": "array",
"description": "List of all company board appointments",
"items": {
"$ref": "#/components/schemas/CompanyBoardAppointmentDetails"
}
}
}
}