fyi.frontpage.feed.comment

frontpage-lexicons.bsky.social

Documentation

Record containing a Frontpage comment.

main record

Record containing a Frontpage comment.

Record Key tid Timestamp-based ID

Properties

blocks array of ref fyi.frontpage.richtext.block Required

The content of the comment. Note, there are additional constraints placed on the total size of the content within the Frontpage AppView that are not possible to express in lexicon. Generally a comment can have a maximum length of 10,000 graphemes, the Frontpage AppView will enforce this limit.

maxLength: 200 items
createdAt string datetime Required

Client-declared timestamp when this comment was originally created.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt",
      "post",
      "blocks"
    ],
    "properties": {
      "post": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref"
      },
      "blocks": {
        "type": "array",
        "items": {
          "ref": "fyi.frontpage.richtext.block",
          "type": "ref"
        },
        "maxLength": 200,
        "description": "The content of the comment. Note, there are additional constraints placed on the total size of the content within the Frontpage AppView that are not possible to express in lexicon. Generally a comment can have a maximum length of 10,000 graphemes, the Frontpage AppView will enforce this limit."
      },
      "parent": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when this comment was originally created."
      }
    }
  },
  "description": "Record containing a Frontpage comment."
}

Lexicon Garden

@