style.tilde.hacking.checkin

tilde.style

Documentation

A single station check-in, logged either automatically (memo.dog, at account creation) or by staff (the other tracks).

main record

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

createdAt string datetime Required

When the check-in was logged.

track string Required

Which account track this check-in is for.

Allowed: memo.dog, aster, bluesky, byoh, selfhosted
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)."
}

Lexicon Garden

@