# style.tilde.hacking.checkin

> Published by [tilde.style](https://lexicon.garden/identity/did:plc:nikxdzksyzpo4sqk3nzlaaxm)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:nikxdzksyzpo4sqk3nzlaaxm/style.tilde.hacking.checkin)
- [Documentation](https://lexicon.garden/lexicon/did:plc:nikxdzksyzpo4sqk3nzlaaxm/style.tilde.hacking.checkin/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:nikxdzksyzpo4sqk3nzlaaxm/style.tilde.hacking.checkin/examples)

## Definitions

### `style.tilde.hacking.checkin`

**Type**: `record`

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

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `track` | `string` | Yes | Which account track this check-in is for. |
| `createdAt` | `string` (datetime) | Yes | When the check-in was logged. |

## Raw Schema

```json
{
  "id": "style.tilde.hacking.checkin",
  "defs": {
    "main": {
      "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)."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "_comment": "NSID authority: style.tilde.hacking (DNS-_lexicon-proven for hacking.tilde.style). Recovered 2026-09-07 — this lexicon was registered with HappyView's admin API early in the workshop-prep session but its source JSON was never written back to the repo; reconstructed here from the actual write sites (kiosk-onboard/staff.html's logCheckin(), kiosk-onboard/index.html's memo.dog signup flow) rather than guessed. One record per station check-in: memo.dog logged automatically at account creation, the other four tracks logged manually via the staff console (kiosk-onboard/staff.html) since there's no automated signal for them. Read back by landing-page/kiosk.html (the on-screen tally display) and landing-page/viewer.html."
}
```
