changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "assignee": {
+ "description": "Task assignee",
+ "properties": {
+ "name": {
+ "description": "Assignee name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "completed": {
+ "description": "Task completion status",
+ "type": "boolean"
+ },
+ "created_at": {
+ "description": "Task creation timestamp",
+ "type": "string"
+ },
+ "due_at": {
+ "description": "Due datetime with time",
+ "type": "string"
+ },
+ "due_on": {
+ "description": "Due date in YYYY-MM-DD format",
+ "type": "string"
+ },
+ "gid": {
+ "description": "Task GID",
+ "type": "string"
+ },
+ "modified_at": {
+ "description": "Task modification timestamp",
+ "type": "string"
+ },
+ "name": {
+ "description": "Task name",
+ "type": "string"
+ },
+ "notes": {
+ "description": "Task description/notes",
+ "type": "string"
+ },
+ "num_subtasks": {
+ "description": "Number of subtasks",
+ "type": "number"
+ },
+ "permalink_url": {
+ "description": "Task permalink URL",
+ "type": "string"
+ },
+ "projects": {
+ "description": "Projects containing this task",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Project name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "tags": {
+ "description": "Tags attached to task",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Tag name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "type": "object"
+}