Shareworks · Schema

Company Board Body

Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies

Properties

Name Type Description
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
View JSON Schema on GitHub

JSON Schema

CompanyBoardCrudRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/CompanyBoardCrudRequest.json",
  "title": "Company Board Body",
  "required": [
    "maximumSize",
    "minimumSize",
    "setAtSize"
  ],
  "type": "object",
  "properties": {
    "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"
    }
  }
}