{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Tasks",
"title": "Tasks",
"type": "object",
"x-box-resource-id": "tasks",
"x-box-tag": "tasks",
"description": "A list of tasks",
"properties": {
"total_count": {
"description": "One greater than the offset of the last entry in the entire collection.\nThe total number of entries in the collection may be less than\n`total_count`.",
"example": 5000,
"type": "integer",
"format": "int64"
},
"entries": {
"type": "array",
"description": "A list of tasks",
"items": {
"$ref": "#/components/schemas/Task"
}
}
}
}