Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| status | object | |
| assigned | string | |
| due | string | |
| overdue | boolean | |
| subject | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InboxTask",
"title": "InboxTask",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"descriptor": {
"type": "string",
"example": "example_value"
},
"status": {
"$ref": "#/components/schemas/ResourceReference"
},
"assigned": {
"type": "string",
"format": "date-time",
"example": "2026-01-15T10:30:00Z"
},
"due": {
"type": "string",
"format": "date-time",
"example": "2026-01-15T10:30:00Z"
},
"overdue": {
"type": "boolean",
"example": true
},
"subject": {
"$ref": "#/components/schemas/ResourceReference"
}
}
}