honeycomb · Schema

Column

Properties

Name Type Description
id string Unique identifier for the column.
key_name string The name of the column.
type string The data type of the column.
description string A description of the column.
hidden boolean If true, the column is excluded from autocomplete and raw data field lists.
created_at string ISO8601 formatted time the column was created.
updated_at string ISO8601 formatted time the column was last updated.
last_written string ISO8601 formatted time the column last received event data.
View JSON Schema on GitHub

JSON Schema

honeycomb-column-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Column",
  "title": "Column",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the column."
    },
    "key_name": {
      "type": "string",
      "description": "The name of the column."
    },
    "type": {
      "type": "string",
      "description": "The data type of the column.",
      "enum": [
        "string",
        "float",
        "integer",
        "boolean"
      ]
    },
    "description": {
      "type": "string",
      "description": "A description of the column."
    },
    "hidden": {
      "type": "boolean",
      "description": "If true, the column is excluded from autocomplete and raw data field lists."
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO8601 formatted time the column was created."
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "description": "ISO8601 formatted time the column was last updated."
    },
    "last_written": {
      "type": "string",
      "format": "date-time",
      "description": "ISO8601 formatted time the column last received event data."
    }
  }
}