{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "TaskTask Structure", "description": "JSON Structure for TaskTask from Unified.to API", "structure": { "type": "object", "properties": { "id": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" }, "name": { "type": "string" }, "project_id": { "type": "string" }, "parent_id": { "type": "string" }, "completed_at": { "type": "string" }, "status": { "type": "string", "enum": [ "OPENED", "IN_PROGRESS", "COMPLETED" ] }, "notes": { "type": "string" }, "due_at": { "type": "string" }, "priority": { "type": "string" }, "assigned_user_ids": { "$ref": "property_TaskTask_assigned_user_ids" }, "creator_user_id": { "type": "string" }, "follower_user_ids": { "$ref": "property_TaskTask_follower_user_ids" }, "group_ids": { "$ref": "property_TaskTask_group_ids" }, "tags": { "$ref": "property_TaskTask_tags" }, "url": { "type": "string" }, "attachment_ids": { "$ref": "property_TaskTask_attachment_ids" }, "metadata": { "$ref": "property_TaskTask_metadata" }, "has_children": { "type": "boolean" } } } }