# space.dailygame.follow

> Published by [dailygame.space](https://lexicon.garden/identity/did:plc:ai5s6bbqotd4wbimmawo32zo)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:ai5s6bbqotd4wbimmawo32zo/space.dailygame.follow)
- [Documentation](https://lexicon.garden/lexicon/did:plc:ai5s6bbqotd4wbimmawo32zo/space.dailygame.follow/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:ai5s6bbqotd4wbimmawo32zo/space.dailygame.follow/examples)

## Definitions

### `space.dailygame.follow`

**Type**: `record`

A one-way follow from the authoring repo to the subject DID. Mirrors the app.bsky.graph.follow shape.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (did) | Yes | DID of the followed user. |
| `createdAt` | `string` (datetime) | Yes | When this follow was created. |

## Examples

The following examples demonstrate valid data for this lexicon. [View all examples](https://lexicon.garden/lexicon/did:plc:ai5s6bbqotd4wbimmawo32zo/space.dailygame.follow/examples)

### Example 1 (`#main`)

**Description**: A one-way follow record from the authoring repo to the subject DID. Mirrors the shape of `app.bsky.graph.follow` but lives under the app's own collection so the graph is scoped to Daily Games and isn't entangled with the user's Bluesky social graph. The rkey is a TID; the subject is the DID being followed.

```json
{
  "$type": "space.dailygame.follow",
  "subject": "did:plc:ai5s6bbqotd4wbimmawo32zo",
  "createdAt": "2026-05-01T15:20:00.000Z"
}
```

## Raw Schema

```json
{
  "id": "space.dailygame.follow",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "did",
            "description": "DID of the followed user."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this follow was created."
          }
        }
      },
      "description": "A one-way follow from the authoring repo to the subject DID. Mirrors the app.bsky.graph.follow shape."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
