create_label
Generate new labels within a Plane project to organize and categorize work items. Specify label details like name, color, and project ID for clear project management.
Instructions
Create a new label in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
label_data | Yes | ||
project_id | Yes | The uuid identifier of the project to create the label in |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"label_data": {
"additionalProperties": false,
"properties": {
"color": {
"maxLength": 255,
"type": "string"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"created_by": {
"format": "uuid",
"type": "string"
},
"deleted_at": {
"format": "date-time",
"type": "string"
},
"description": {
"type": "string"
},
"external_id": {
"maxLength": 255,
"type": "string"
},
"external_source": {
"maxLength": 255,
"type": "string"
},
"id": {
"format": "uuid",
"type": "string"
},
"name": {
"maxLength": 255,
"type": "string"
},
"parent": {
"format": "uuid",
"type": "string"
},
"project": {
"format": "uuid",
"type": "string"
},
"sort_order": {
"type": "number"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"updated_by": {
"format": "uuid",
"type": "string"
},
"workspace": {
"format": "uuid",
"type": "string"
}
},
"required": [
"color",
"name"
],
"type": "object"
},
"project_id": {
"description": "The uuid identifier of the project to create the label in",
"type": "string"
}
},
"required": [
"project_id",
"label_data"
],
"type": "object"
}