A comment record for check-ins in the Anchor app
Record Key
tid
Timestamp-based ID
Properties
checkinRef
ref
#strongRef
Required
Reference to the check-in being commented on
createdAt
string
datetime
Required
When the comment was created
text
string
Required
The comment text content
maxLength: 1000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt",
"checkinRef"
],
"properties": {
"text": {
"type": "string",
"maxLength": 1000,
"description": "The comment text content"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the comment was created"
},
"checkinRef": {
"ref": "#strongRef",
"type": "ref",
"description": "Reference to the check-in being commented on"
}
}
},
"description": "A comment record for check-ins in the Anchor app"
}