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

app.bsky.graph.listitem

bsky-lexicons.bsky.social

Documentation

main record

Record representing an account's inclusion on a specific list. The AppView will ignore duplicate listitem records.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

list string at-uri Required

Reference (AT-URI) to the list record (app.bsky.graph.list).

subject string did Required

The account which is included on the list.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "list",
      "createdAt"
    ],
    "properties": {
      "list": {
        "type": "string",
        "format": "at-uri",
        "description": "Reference (AT-URI) to the list record (app.bsky.graph.list)."
      },
      "subject": {
        "type": "string",
        "format": "did",
        "description": "The account which is included on the list."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "Record representing an account's inclusion on a specific list. The AppView will ignore duplicate listitem records."
}

Lexicon Garden

@