Backfill in-progress. Some lexicons and records may be missing or incomplete.

app.bsky.graph.list

bsky-lexicons.bsky.social

Documentation

main record

Record representing a list of accounts (actors). Scope includes both moderation-oriented lists and curration-oriented lists.

Record Key tid Timestamp-based ID

Properties

avatar blob Optional

No description provided.

maxSize: 1.0 MB
createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description provided.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
name string Required

Display name for list; can not be empty.

maxLength: 64 bytesminLength: 1 bytes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "purpose",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 64,
        "minLength": 1,
        "description": "Display name for list; can not be empty."
      },
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 1000000
      },
      "labels": {
        "refs": [
          "com.atproto.label.defs#selfLabels"
        ],
        "type": "union"
      },
      "purpose": {
        "ref": "app.bsky.graph.defs#listPurpose",
        "type": "ref",
        "description": "Defines the purpose of the list (aka, moderation-oriented or curration-oriented)"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "maxGraphemes": 300
      },
      "descriptionFacets": {
        "type": "array",
        "items": {
          "ref": "app.bsky.richtext.facet",
          "type": "ref"
        }
      }
    }
  },
  "description": "Record representing a list of accounts (actors). Scope includes both moderation-oriented lists and curration-oriented lists."
}

Lexicon Garden

@