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

app.bsky.feed.generator

bsky-lexicons.bsky.social

Documentation

main record

Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository.

Record Key any Any valid record key

Properties

acceptsInteractions boolean Optional

Declaration that a feed accepts feedback interactions from a client through app.bsky.feed.sendInteractions

avatar blob Optional

No description provided.

maxSize: 1.0 MB
contentMode string Optional

No description provided.

Known values: app.bsky.feed.defs#contentModeUnspecified, app.bsky.feed.defs#contentModeVideo
createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description provided.

maxLength: 3000 bytesmaxGraphemes: 300 graphemes
did string did Required

A decentralized identifier (DID).

displayName string Required

No description provided.

maxLength: 240 bytesmaxGraphemes: 24 graphemes
View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "did",
      "displayName",
      "createdAt"
    ],
    "properties": {
      "did": {
        "type": "string",
        "format": "did"
      },
      "avatar": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg"
        ],
        "maxSize": 1000000
      },
      "labels": {
        "refs": [
          "com.atproto.label.defs#selfLabels"
        ],
        "type": "union",
        "description": "Self-label values"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "contentMode": {
        "type": "string",
        "knownValues": [
          "app.bsky.feed.defs#contentModeUnspecified",
          "app.bsky.feed.defs#contentModeVideo"
        ]
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "maxGraphemes": 300
      },
      "displayName": {
        "type": "string",
        "maxLength": 240,
        "maxGraphemes": 24
      },
      "descriptionFacets": {
        "type": "array",
        "items": {
          "ref": "app.bsky.richtext.facet",
          "type": "ref"
        }
      },
      "acceptsInteractions": {
        "type": "boolean",
        "description": "Declaration that a feed accepts feedback interactions from a client through app.bsky.feed.sendInteractions"
      }
    }
  },
  "description": "Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository."
}

Lexicon Garden

@