honeycomb · Schema

ColumnUpdateRequest

Properties

Name Type Description
description string An updated description for the column.
type string An updated data type for the column.
hidden boolean If true, hides the column from autocomplete and raw data field lists.
View JSON Schema on GitHub

JSON Schema

honeycomb-columnupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ColumnUpdateRequest",
  "title": "ColumnUpdateRequest",
  "type": "object",
  "properties": {
    "description": {
      "type": "string",
      "description": "An updated description for the column."
    },
    "type": {
      "type": "string",
      "description": "An updated data type for the column.",
      "enum": [
        "string",
        "float",
        "integer",
        "boolean"
      ]
    },
    "hidden": {
      "type": "boolean",
      "description": "If true, hides the column from autocomplete and raw data field lists."
    }
  }
}