No description available.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
deletedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
name
string
Required
Task name/title.
maxLength: 640 bytesmaxGraphemes: 64 graphemesstatus
string
Required
Task status.
Allowed:
ongoing, doneDefault:
ongoingupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"status",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"description": "Task name/title.",
"maxGraphemes": 64
},
"status": {
"enum": [
"ongoing",
"done"
],
"type": "string",
"default": "ongoing",
"description": "Task status."
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"deletedAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
}
}