{
"$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"
}
}
}