honeycomb · Schema
BoardCreateRequest
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The display name for the board. |
| description | string | An optional description for the board. |
| style | string | The visual layout style. |
| column_layout | string | The column layout for visual mode. |
| queries | array | The list of queries to display on the board. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BoardCreateRequest",
"title": "BoardCreateRequest",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "The display name for the board."
},
"description": {
"type": "string",
"description": "An optional description for the board."
},
"style": {
"type": "string",
"description": "The visual layout style.",
"enum": [
"list",
"visual"
]
},
"column_layout": {
"type": "string",
"description": "The column layout for visual mode.",
"enum": [
"multi",
"single"
]
},
"queries": {
"type": "array",
"description": "The list of queries to display on the board.",
"items": {
"$ref": "#/components/schemas/BoardQuery"
}
}
}
}