Shareworks · Schema

Fund Details Response

Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies

Properties

Name Type Description
fundName string Full name of the fund
fmv number Fair market value of the fund
effectiveDate string The effective date of the fund
expirationDate string The expiration date of the fund
View JSON Schema on GitHub

JSON Schema

FundDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/FundDetails.json",
  "title": "Fund Details Response",
  "type": "object",
  "properties": {
    "fundName": {
      "type": "string",
      "description": "Full name of the fund"
    },
    "fmv": {
      "type": "number",
      "description": "Fair market value of the fund",
      "format": "double"
    },
    "effectiveDate": {
      "type": "string",
      "description": "The effective date of the fund",
      "format": "date"
    },
    "expirationDate": {
      "type": "string",
      "description": "The expiration date of the fund",
      "format": "date"
    }
  }
}