HubSpot · JSON Structure

Hubspot Cms Hubdb Hub Db Table Create Request Structure

Request body for creating or updating a HubDB table.

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

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

Properties

name label columns

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

JSON Structure

Raw ↑
{
  "type": "object",
  "description": "Request body for creating or updating a HubDB table.",
  "name": "HubDBTableCreateRequest",
  "properties": {
    "name": {
      "type": "string",
      "description": "The machine-readable name of the table."
    },
    "label": {
      "type": "string",
      "description": "The human-readable label for the table."
    },
    "columns": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "type": {
            "type": "string"
          }
        }
      }
    }
  },
  "required": [
    "name",
    "label"
  ],
  "$schema": "https://json-structure.org/draft/2020-12/schema"
}