Shareworks · Schema

Stock Certificate Response

Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies

Properties

Name Type Description
stockCertificateId integer Identifier for the stock certificate
stakeholderId integer Identifier for the stakeholder
stockDesignationId integer Identifier for the stock designation
stockDesignationName string Name for the stock designation
stockCertificateNumber string Number 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
issueReason string Issue reason for the stock certificate
effectiveDate string Effective date 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)
vestingScheduleId integer Identifier for the vesting schedule
vestingScheduleName string Name 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
View JSON Schema on GitHub

JSON Schema

StockCertificateDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/StockCertificateDetails.json",
  "title": "Stock Certificate Response",
  "required": [
    "effectiveDate",
    "issuePrice",
    "issueReason",
    "quantity",
    "stakeholderId",
    "stockCertificateId",
    "stockCertificateNumber",
    "stockDesignationId",
    "stockDesignationName"
  ],
  "type": "object",
  "properties": {
    "stockCertificateId": {
      "type": "integer",
      "description": "Identifier for the stock certificate",
      "format": "int32"
    },
    "stakeholderId": {
      "type": "integer",
      "description": "Identifier for the stakeholder",
      "format": "int32"
    },
    "stockDesignationId": {
      "type": "integer",
      "description": "Identifier for the stock designation",
      "format": "int32"
    },
    "stockDesignationName": {
      "type": "string",
      "description": "Name for the stock designation"
    },
    "stockCertificateNumber": {
      "type": "string",
      "description": "Number for the stock certificate"
    },
    "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"
    },
    "issueReason": {
      "type": "string",
      "description": "Issue reason for the stock certificate",
      "enum": [
        "ORIGINAL_ISSUANCE",
        "ORIGINAL_ISSUANCE_WITH_VESTING",
        "OTHER"
      ]
    },
    "effectiveDate": {
      "type": "string",
      "description": "Effective date for the stock certificate",
      "format": "date"
    },
    "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"
    },
    "vestingScheduleId": {
      "type": "integer",
      "description": "Identifier for the vesting schedule",
      "format": "int32"
    },
    "vestingScheduleName": {
      "type": "string",
      "description": "Name for the vesting schedule"
    },
    "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/ManualVestingRowDetails"
      }
    }
  }
}