A like 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 liked
createdAt
string
datetime
Required
When the like was created
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"createdAt",
"checkinRef"
],
"properties": {
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the like was created"
},
"checkinRef": {
"ref": "#strongRef",
"type": "ref",
"description": "Reference to the check-in being liked"
}
}
},
"description": "A like record for check-ins in the Anchor app"
}