A private actionable item belonging to a TaskedAT task list.
Record Key
tid
Timestamp-based ID
Properties
completed
boolean
Required
No description available.
completedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
details
string
Required
No description available.
maxGraphemes: 20000 graphemesdueAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
formatVersion
integer
Required
No description available.
list
string
at-uri
Required
The private task-list record that owns this task.
position
integer
Required
No description available.
minimum: 0title
string
Required
No description available.
maxGraphemes: 500 graphemesminGraphemes: 1 graphemesupdatedAt
string
datetime
Required
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"formatVersion",
"list",
"title",
"details",
"position",
"completed",
"createdAt",
"updatedAt"
],
"properties": {
"list": {
"type": "string",
"format": "at-uri",
"description": "The private task-list record that owns this task."
},
"dueAt": {
"type": "string",
"format": "datetime"
},
"title": {
"type": "string",
"maxGraphemes": 500,
"minGraphemes": 1
},
"details": {
"type": "string",
"maxGraphemes": 20000
},
"position": {
"type": "integer",
"minimum": 0
},
"completed": {
"type": "boolean"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
},
"completedAt": {
"type": "string",
"format": "datetime"
},
"formatVersion": {
"type": "integer",
"const": 1
}
}
},
"description": "A private actionable item belonging to a TaskedAT task list."
}