{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/cms-hubdb-api-hub-dbtable-create-request-schema.json", "title": "HubDBTableCreateRequest", "description": "Request body for creating or updating a HubDB table.", "type": "object", "properties": { "name": { "type": "string", "description": "The machine-readable name of the table.", "example": "Example Record" }, "label": { "type": "string", "description": "The human-readable label for the table.", "example": "Example Record" }, "columns": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "label": { "type": "string" }, "type": { "type": "string" } } }, "example": [ { "name": "Example Record", "label": "Example Record", "type": "standard" } ] } }, "required": [ "name", "label" ] }