app.juttu.articleLink

juttu.app

Documentation

Maps a unique article ID to its Bluesky comments thread, preserving original creation time.

main record

Maps a unique article ID to its Bluesky comments thread, preserving original creation time.

Record Key any Any valid record key

Properties

articleId string Required

The site-specific unique identifier for the article (e.g., slug).

maxLength: 300 bytes
articleUrl string uri Optional

The URL of the article.

commentsThread ref com.atproto.repo.strongRef Required

A strong reference to the root post (e.g., app.bsky.feed.post) of the comments thread.

createdAt string datetime Required

The original publication timestamp of the article.

View raw schema
{
  "key": "any",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "articleId",
      "commentsThread",
      "createdAt"
    ],
    "properties": {
      "articleId": {
        "type": "string",
        "maxLength": 300,
        "description": "The site-specific unique identifier for the article (e.g., slug)."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "The original publication timestamp of the article."
      },
      "articleUrl": {
        "type": "string",
        "format": "uri",
        "description": "The URL of the article."
      },
      "commentsThread": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "A strong reference to the root post (e.g., app.bsky.feed.post) of the comments thread."
      }
    }
  },
  "description": "Maps a unique article ID to its Bluesky comments thread, preserving original creation time."
}

Lexicon Garden

@