A single tracked span of time. A running timer is simply an entry with no endTime yet.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
When this record was created.
endTime
string
datetime
Optional
When tracking stopped. Absent while the timer is still running.
name
string
Required
Short label for what is being tracked.
maxLength: 2000 bytesmaxGraphemes: 200 graphemesstartTime
string
datetime
Required
When tracking started.
tags
array
of
string
Optional
Arbitrary tag strings applied to this entry.
maxLength: 64 itemsView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"startTime",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 2000,
"description": "Short label for what is being tracked.",
"maxGraphemes": 200
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 640,
"maxGraphemes": 64
},
"maxLength": 64,
"description": "Arbitrary tag strings applied to this entry."
},
"endTime": {
"type": "string",
"format": "datetime",
"description": "When tracking stopped. Absent while the timer is still running."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When this record was created."
},
"startTime": {
"type": "string",
"format": "datetime",
"description": "When tracking started."
}
}
},
"description": "A single tracked span of time. A running timer is simply an entry with no endTime yet."
}