{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaskTask", "title": "TaskTask", "properties": { "assigned_user_ids": { "$ref": "#/components/schemas/property_TaskTask_assigned_user_ids" }, "attachment_ids": { "$ref": "#/components/schemas/property_TaskTask_attachment_ids" }, "completed_at": { "format": "date-time", "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "creator_user_id": { "type": "string" }, "due_at": { "format": "date-time", "type": "string" }, "follower_user_ids": { "$ref": "#/components/schemas/property_TaskTask_follower_user_ids" }, "group_ids": { "$ref": "#/components/schemas/property_TaskTask_group_ids" }, "has_children": { "type": "boolean" }, "id": { "type": "string" }, "metadata": { "$ref": "#/components/schemas/property_TaskTask_metadata" }, "name": { "type": "string" }, "notes": { "type": "string" }, "parent_id": { "type": "string" }, "priority": { "type": "string" }, "project_id": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "status": { "enum": [ "OPENED", "IN_PROGRESS", "COMPLETED" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "tags": { "$ref": "#/components/schemas/property_TaskTask_tags" }, "updated_at": { "format": "date-time", "type": "string" }, "url": { "type": "string" } }, "type": "object" }