HubSpot · Schema

ErrorDetail

Details about a specific error

AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

Properties

Name Type Description
message string
code string
subCategory string
in string
context object
View JSON Schema on GitHub

JSON Schema

hubspot-crm-associations-error-detail-schema.json Raw ↑
{
  "type": "object",
  "description": "Details about a specific error",
  "properties": {
    "message": {
      "type": "string",
      "example": "This is an example description."
    },
    "code": {
      "type": "string",
      "example": "example-value"
    },
    "subCategory": {
      "type": "string",
      "example": "standard"
    },
    "in": {
      "type": "string",
      "example": "example-value"
    },
    "context": {
      "type": "object",
      "example": {
        "key": "value"
      }
    }
  },
  "required": [
    "message"
  ],
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ErrorDetail"
}