# at.rolld.profile

> Published by [rolld.at](https://lexicon.garden/identity/did:plc:vjpkp7kuxs6iicilpqlibvl4)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:vjpkp7kuxs6iicilpqlibvl4/at.rolld.profile)
- [Documentation](https://lexicon.garden/lexicon/did:plc:vjpkp7kuxs6iicilpqlibvl4/at.rolld.profile/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:vjpkp7kuxs6iicilpqlibvl4/at.rolld.profile/examples)

## Definitions

### `at.rolld.profile`

**Type**: `record`

A single per-user record (key 'self') that declares 'this account uses rolld'. Its PRESENCE is the signal that an account participates, so the friends-feed can cheaply find which of a user's follows to fetch (query for this record across follows, then read plays only for those who have it). Its DELETION is a clean opt-out. Holds optional lightweight display preferences; the authoritative bio/avatar still come from app.bsky.actor.profile, not here. Modeled on atmot's stats record doing the same double duty.

**Key**: `literal:self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `createdAt` | `string` (datetime) | Yes | When the account first declared rolld participation. |
| `displayName` | `string` | No | Optional rolld-specific display name override. If absent, the app uses app.bsky.actor.profile. |

## Raw Schema

```json
{
  "id": "at.rolld.profile",
  "defs": {
    "main": {
      "key": "literal:self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "createdAt"
        ],
        "properties": {
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When the account first declared rolld participation."
          },
          "displayName": {
            "type": "string",
            "maxLength": 320,
            "description": "Optional rolld-specific display name override. If absent, the app uses app.bsky.actor.profile."
          }
        }
      },
      "description": "A single per-user record (key 'self') that declares 'this account uses rolld'. Its PRESENCE is the signal that an account participates, so the friends-feed can cheaply find which of a user's follows to fetch (query for this record across follows, then read plays only for those who have it). Its DELETION is a clean opt-out. Holds optional lightweight display preferences; the authoritative bio/avatar still come from app.bsky.actor.profile, not here. Modeled on atmot's stats record doing the same double duty."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
