at.rolld.profile

rolld.at

Documentation

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.

main 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.

Record Key literal:self Fixed literal value

Properties

createdAt string datetime Required

When the account first declared rolld participation.

displayName string Optional

Optional rolld-specific display name override. If absent, the app uses app.bsky.actor.profile.

maxLength: 320 bytes
View raw schema
{
  "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."
}

Lexicon Garden

@