Shareworks · Schema

Company Integration Response

Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies

Properties

Name Type Description
companyId integer Identifier for the company
companyName string Name for the company
View JSON Schema on GitHub

JSON Schema

CompanyIntegrationDetails.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/CompanyIntegrationDetails.json",
  "title": "Company Integration Response",
  "required": [
    "companyName"
  ],
  "type": "object",
  "properties": {
    "companyId": {
      "type": "integer",
      "description": "Identifier for the company",
      "format": "int32"
    },
    "companyName": {
      "type": "string",
      "description": "Name for the company"
    }
  }
}