File size: 932 Bytes
31c9f7d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | {
"name": "create_issue_label",
"description": "Create a new Linear issue label",
"inputSchema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Label name"
},
"description": {
"description": "Label description",
"type": "string"
},
"color": {
"description": "Hex color code",
"type": "string"
},
"teamId": {
"description": "Team UUID (omit for workspace label)",
"type": "string"
},
"parent": {
"description": "Parent label group name",
"type": "string"
},
"isGroup": {
"default": false,
"description": "Is label group (not directly applicable)",
"type": "boolean"
}
},
"required": [
"name"
],
"additionalProperties": false
}
} |