Shareworks · Schema

Individual Stakeholder Body

Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies

Properties

Name Type Description
firstName string First name for the stakeholder
middleName string Middle name for the stakeholder
lastName string Last name for the stakeholder
stakeholderNumber string Number for the stakeholder, typically generated
View JSON Schema on GitHub

JSON Schema

IndividualStakeholderCrudRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/IndividualStakeholderCrudRequest.json",
  "title": "Individual Stakeholder Body",
  "required": [
    "firstName",
    "lastName"
  ],
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "description": "First name for the stakeholder"
    },
    "middleName": {
      "type": "string",
      "description": "Middle name for the stakeholder"
    },
    "lastName": {
      "type": "string",
      "description": "Last name for the stakeholder"
    },
    "stakeholderNumber": {
      "type": "string",
      "description": "Number for the stakeholder, typically generated"
    }
  }
}