Properties
| Name | Type | Description |
|---|---|---|
| created_at | string | |
| description | string | |
| group_ids | object | |
| has_children | boolean | |
| has_tasks | boolean | |
| id | string | |
| metadata | object | |
| name | string | |
| parent_id | string | |
| raw | object | |
| updated_at | string | |
| user_ids | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TaskProject",
"title": "TaskProject",
"properties": {
"created_at": {
"format": "date-time",
"type": "string"
},
"description": {
"type": "string"
},
"group_ids": {
"$ref": "#/components/schemas/property_TaskProject_group_ids"
},
"has_children": {
"type": "boolean"
},
"has_tasks": {
"type": "boolean"
},
"id": {
"type": "string"
},
"metadata": {
"$ref": "#/components/schemas/property_TaskProject_metadata"
},
"name": {
"type": "string"
},
"parent_id": {
"type": "string"
},
"raw": {
"additionalProperties": true,
"type": "object"
},
"updated_at": {
"format": "date-time",
"type": "string"
},
"user_ids": {
"$ref": "#/components/schemas/property_TaskProject_user_ids"
}
},
"type": "object"
}