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

app.bsky.bookmark.defs

bsky-lexicons.bsky.social

Documentation

bookmark object

Object used to store bookmark data in stash.

Properties

subject ref com.atproto.repo.strongRef Required

A strong ref to the record to be bookmarked. Currently, only `app.bsky.feed.post` records are supported.

View raw schema
{
  "type": "object",
  "required": [
    "subject"
  ],
  "properties": {
    "subject": {
      "ref": "com.atproto.repo.strongRef",
      "type": "ref",
      "description": "A strong ref to the record to be bookmarked. Currently, only `app.bsky.feed.post` records are supported."
    }
  },
  "description": "Object used to store bookmark data in stash."
}
bookmarkView object

Properties

createdAt string datetime Optional

An RFC 3339 formatted timestamp.

View raw schema
{
  "type": "object",
  "required": [
    "subject",
    "item"
  ],
  "properties": {
    "item": {
      "refs": [
        "app.bsky.feed.defs#blockedPost",
        "app.bsky.feed.defs#notFoundPost",
        "app.bsky.feed.defs#postView"
      ],
      "type": "union"
    },
    "subject": {
      "ref": "com.atproto.repo.strongRef",
      "type": "ref",
      "description": "A strong ref to the bookmarked record."
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    }
  }
}

Lexicon Garden

@