A single station check-in, logged either automatically (memo.dog, at account creation) or by staff (the other tracks).
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"track",
"createdAt"
],
"properties": {
"track": {
"enum": [
"memo.dog",
"aster",
"bluesky",
"byoh",
"selfhosted"
],
"type": "string",
"description": "Which account track this check-in is for."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "When the check-in was logged."
}
}
},
"description": "A single station check-in, logged either automatically (memo.dog, at account creation) or by staff (the other tracks)."
}