Shareworks · Schema

Validation Error

Equity CompensationStock OptionsRSUESPPEmployee EquityFinancial ServicesMorgan StanleyEquity AdministrationPrivate CompaniesPublic Companies

Properties

Name Type Description
message string Message describing the error
code integer Unique code for the validation error
View JSON Schema on GitHub

JSON Schema

ErrorWithCode.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/shareworks/main/json-schema/ErrorWithCode.json",
  "title": "Validation Error",
  "required": [
    "code",
    "message"
  ],
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "Message describing the error"
    },
    "code": {
      "type": "integer",
      "description": "Unique code for the validation error",
      "format": "int32"
    }
  }
}