Shareworks · Schema

Grant Response

Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial-ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies

Properties

Name Type Description
grantId integer Identifier for the grant
planId integer Identifier for the company plan
stakeholderId integer Identifier for the stakeholder
awardTypeId integer Identifier for the company award type
awardTypeName string Name for the company award type
grantName string Name for the grant, typically generated
grantNumber string Number for the grant, typically generated
grantPrice number Price at which the shares are granted
marketPriceAtTimeOfGrant number The fair market value (or latest 409A valuation for private companies) at the time of grant (this is typically auto-populated from the most recent quote, but can also be specified if desired)
grantCurrency string Currency for the grant price / market price at time of grant
grantDate string Date on which the shares are granted
expiryDate string Expiry date for the grant
grantedShares number Quantity of shares for the grant
allowEarlyExercise boolean Whether early exercises are allowed for the grant
underRule701 boolean Whether rule 701 applies to the grant
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 grant, specified when using a manual vesting schedule
vestingAcceleration array List of the vesting acceleration stipulations of the grant. May be empty.
View JSON Schema on GitHub

JSON Schema

StakeholderGrantDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/StakeholderGrantDetails.json",
  "title": "Grant Response",
  "required": [
    "allowEarlyExercise",
    "awardTypeId",
    "awardTypeName",
    "expiryDate",
    "grantCurrency",
    "grantDate",
    "grantId",
    "grantName",
    "grantNumber",
    "grantPrice",
    "grantedShares",
    "marketPriceAtTimeOfGrant",
    "planId",
    "stakeholderId",
    "underRule701",
    "vestingScheduleId",
    "vestingScheduleName",
    "vestingStartDate"
  ],
  "type": "object",
  "properties": {
    "grantId": {
      "type": "integer",
      "description": "Identifier for the grant",
      "format": "int32"
    },
    "planId": {
      "type": "integer",
      "description": "Identifier for the company plan",
      "format": "int32"
    },
    "stakeholderId": {
      "type": "integer",
      "description": "Identifier for the stakeholder",
      "format": "int32"
    },
    "awardTypeId": {
      "type": "integer",
      "description": "Identifier for the company award type",
      "format": "int32"
    },
    "awardTypeName": {
      "type": "string",
      "description": "Name for the company award type"
    },
    "grantName": {
      "type": "string",
      "description": "Name for the grant, typically generated"
    },
    "grantNumber": {
      "type": "string",
      "description": "Number for the grant, typically generated"
    },
    "grantPrice": {
      "type": "number",
      "description": "Price at which the shares are granted",
      "format": "double"
    },
    "marketPriceAtTimeOfGrant": {
      "type": "number",
      "description": "The fair market value (or latest 409A valuation for private companies) at the time of grant (this is typically auto-populated from the most recent quote, but can also be specified if desired)",
      "format": "double"
    },
    "grantCurrency": {
      "type": "string",
      "description": "Currency for the grant price / market price at time of grant",
      "enum": [
        "USD",
        "CAD",
        "GBP",
        "EUR",
        "JPY",
        "AUD",
        "KRW",
        "DZD",
        "AOA",
        "ARS",
        "AMD",
        "AWG",
        "BSD",
        "BHD",
        "BDT",
        "BBD",
        "BOB",
        "BWP",
        "BRL",
        "BND",
        "BGN",
        "BZD",
        "KYD",
        "CLP",
        "CNY",
        "COP",
        "CRC",
        "HRK",
        "CZK",
        "DKK",
        "DOP",
        "XCD",
        "EGP",
        "ETB",
        "FJD",
        "XAF",
        "GMD",
        "GHS",
        "GIP",
        "GTQ",
        "HNL",
        "HKD",
        "HUF",
        "ISK",
        "INR",
        "IDR",
        "IQD",
        "ILS",
        "JMD",
        "JOD",
        "KZT",
        "KES",
        "KWD",
        "LSL",
        "MOP",
        "MWK",
        "MYR",
        "MUR",
        "MXN",
        "MAD",
        "MZN",
        "MMK",
        "NAD",
        "ANG",
        "NZD",
        "NGN",
        "NOK",
        "OMR",
        "PKR",
        "PAB",
        "PGK",
        "PYG",
        "PEN",
        "PHP",
        "PLN",
        "QAR",
        "RON",
        "RUB",
        "SAR",
        "RSD",
        "SCR",
        "SGD",
        "ZAR",
        "SDG",
        "LKR",
        "SZL",
        "SEK",
        "CHF",
        "TWD",
        "TZS",
        "THB",
        "TTD",
        "TND",
        "TRY",
        "UGX",
        "UAH",
        "AED",
        "UYU",
        "UZS",
        "VEF",
        "VES",
        "VND",
        "XOF",
        "ZWL",
        "ZMW"
      ]
    },
    "grantDate": {
      "type": "string",
      "description": "Date on which the shares are granted",
      "format": "date"
    },
    "expiryDate": {
      "type": "string",
      "description": "Expiry date for the grant",
      "format": "date"
    },
    "grantedShares": {
      "type": "number",
      "description": "Quantity of shares for the grant",
      "format": "double"
    },
    "allowEarlyExercise": {
      "type": "boolean",
      "description": "Whether early exercises are allowed for the grant"
    },
    "underRule701": {
      "type": "boolean",
      "description": "Whether rule 701 applies to the grant"
    },
    "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 grant, specified when using a manual vesting schedule",
      "items": {
        "$ref": "#/components/schemas/ManualVestingRowDetails"
      }
    },
    "vestingAcceleration": {
      "type": "array",
      "description": "List of the vesting acceleration stipulations of the grant. May be empty.",
      "items": {
        "$ref": "#/components/schemas/StakeholderGrantAcceleratedVestingDetails"
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/StakeholderGrantDetails"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.