Skip to content

TaskSummary response model

All models · Download OpenAPI

Nullable fields represent unknown values; they do not imply zero cost or a completed action.

Field Type Required Details
id string Yes Format: uuid
title string Yes
status string Yes
Full JSON schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"title": {
"type": "string"
},
"status": {
"type": "string"
}
},
"required": [
"id",
"title",
"status"
]
}