addedInput schema / properties / add_labels
Added value: +{
+ "description": "Labels to attach (each a label id, title, or id prefix). The label has to exist already — create one with label_create",
+ "items": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "type": "array"
+}
addedInput schema / properties / remove_labels
Added value: +{
+ "description": "Labels to detach (each a label id, title, or id prefix)",
+ "items": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "type": "array"
+}
addedInput schema / properties / tasks
Added value: +{
+ "description": "Several workspace-scoped task numbers (max 50), instead of `task`. Confirm the list with the user first: one call changes every task in it.",
+ "items": {
+ "description": "Workspace-scoped task number, encoded as a string",
+ "pattern": "^[1-9]\\d*$",
+ "type": "string"
+ },
+ "maxItems": 50,
+ "minItems": 1,
+ "type": "array"
+}
changedInput schema / required
Previous value: -[
- "task",
- "context"
-]New value: +[
+ "context"
+]
addedOutput schema / properties / count
Added value: +{
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+}
removedOutput schema / properties / id
Removed value: -{
- "type": "string"
-}
removedOutput schema / properties / number
Removed value: -{
- "exclusiveMinimum": 0,
- "maximum": 9007199254740991,
- "type": "integer"
-}
addedOutput schema / properties / tasks
Added value: +{
+ "description": "Every task the call changed, in the order it was given",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "id": {
+ "type": "string"
+ },
+ "number": {
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+ },
+ "title": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "number",
+ "title"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+}
changedOutput schema / required
Previous value: -[
- "action",
- "id",
- "number",
- "ok"
-]New value: +[
+ "action",
+ "count",
+ "ok",
+ "tasks"
+]