A location check-in record for the Anchor app
tid
Timestamp-based ID
Properties
address
ref
#address
Required
Address of the check-in location (based on community.lexicon.location.address)
category
string
Optional
Place category (e.g., cafe, restaurant)
maxLength: 100 bytescategoryGroup
string
Optional
Category group for organization
maxLength: 100 bytescategoryIcon
string
Optional
Emoji icon for the category
maxLength: 10 bytescreatedAt
string
datetime
Required
When the check-in was created
fsq
ref
#fsqPlace
Optional
Optional Foursquare venue data (based on community.lexicon.location.fsq)
geo
ref
#geo
Required
Geographic coordinates of the check-in (based on community.lexicon.location.geo)
image
ref
#checkinImage
Optional
Optional image attachment for the check-in
text
string
Required
The check-in message or note
maxLength: 3000 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"text",
"createdAt",
"address",
"geo"
],
"properties": {
"fsq": {
"ref": "#fsqPlace",
"type": "ref",
"description": "Optional Foursquare venue data (based on community.lexicon.location.fsq)"
},
"geo": {
"ref": "#geo",
"type": "ref",
"description": "Geographic coordinates of the check-in (based on community.lexicon.location.geo)"
},
"text": {
"type": "string",
"maxLength": 3000,
"description": "The check-in message or note"
},
"image": {
"ref": "#checkinImage",
"type": "ref",
"description": "Optional image attachment for the check-in"
},
"address": {
"ref": "#address",
"type": "ref",
"description": "Address of the check-in location (based on community.lexicon.location.address)"
},
"category": {
"type": "string",
"maxLength": 100,
"description": "Place category (e.g., cafe, restaurant)"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the check-in was created"
},
"categoryIcon": {
"type": "string",
"maxLength": 10,
"description": "Emoji icon for the category"
},
"categoryGroup": {
"type": "string",
"maxLength": 100,
"description": "Category group for organization"
}
}
},
"description": "A location check-in record for the Anchor app"
}