Nurama Developers

add_column

Append a new column to a board.

Mutating tool: it changes data in Nurama. Available only when the key carries the matching scope.

Append a new column to a board. taskStatus maps the column to a canonical lifecycle bucket — pass null to leave it unmapped. reviewersCanContribute only matters on reviewer-tier boards; safe to omit on creator-only boards.

Input

PropertyTypeRequiredDescription
boardIdstringyesUUID of the board.
namestringyesColumn name. min length 1
descriptionstringnoOptional description.
colorstringnoOptional hex color.
isDefaultbooleannoWhen true, new tasks land here by default.
taskStatus"pending" | "inProgress" | "complete" | "closed" | nullnoCanonical lifecycle bucket this column represents.
sortOrdernumbernoPosition among columns.
reviewersCanContributebooleannoReviewer-role users may add tasks here on reviewer-visibility boards.

JSON Schema

{
  "type": "object",
  "properties": {
    "boardId": {
      "type": "string",
      "description": "UUID of the board."
    },
    "name": {
      "type": "string",
      "minLength": 1,
      "description": "Column name."
    },
    "description": {
      "type": "string",
      "description": "Optional description."
    },
    "color": {
      "type": "string",
      "description": "Optional hex color."
    },
    "isDefault": {
      "type": "boolean",
      "description": "When true, new tasks land here by default."
    },
    "taskStatus": {
      "type": [
        "string",
        "null"
      ],
      "enum": [
        "pending",
        "inProgress",
        "complete",
        "closed",
        null
      ],
      "description": "Canonical lifecycle bucket this column represents."
    },
    "sortOrder": {
      "type": "number",
      "description": "Position among columns."
    },
    "reviewersCanContribute": {
      "type": "boolean",
      "description": "Reviewer-role users may add tasks here on reviewer-visibility boards."
    }
  },
  "required": [
    "boardId",
    "name"
  ],
  "additionalProperties": false
}

On this page