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.
item
ref
strong
Required
Strong reference to the task item being commented on.
text
string
Required
Comment text.
maxLength: 640 bytesmaxGraphemes: 64 graphemesupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"item",
"text",
"createdAt"
],
"properties": {
"item": {
"ref": "strong",
"type": "ref",
"description": "Strong reference to the task item being commented on."
},
"text": {
"type": "string",
"maxLength": 640,
"description": "Comment text.",
"maxGraphemes": 64
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"deletedAt": {
"type": "string",
"format": "datetime"
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
}
}