HubSpot · JSON Structure

Hubspot Source Code Validation Error Structure

A validation error

Type: object Properties: 4 Required: 2
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales

ValidationError is a JSON Structure definition published by HubSpot, describing 4 properties, of which 2 are required. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

message line column category

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "A validation error",
  "name": "ValidationError",
  "properties": {
    "message": {
      "type": "string",
      "description": "Error description"
    },
    "line": {
      "type": "integer",
      "description": "Line number where the error occurred"
    },
    "column": {
      "type": "integer",
      "description": "Column number where the error occurred"
    },
    "category": {
      "type": "string",
      "description": "Error category"
    }
  },
  "required": [
    "message",
    "line"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}