app.atmobb.discussion.reply

lexicons.atmobb.app

Documentation

A reply in a thread. Lives in the author's repo. Flat by default; parent enables quote-chain threading.

main record

A reply in a thread. Lives in the author's repo. Flat by default; parent enables quote-chain threading.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Optional

An RFC 3339 formatted timestamp.

parent ref com.atproto.repo.strongRef Optional

A specific reply this responds to, for quote-chains. Absent means replying to the thread.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "thread",
      "body"
    ],
    "properties": {
      "body": {
        "type": "array",
        "items": {
          "refs": [
            "app.atmobb.richtext.block#text",
            "app.atmobb.richtext.block#quote",
            "app.atmobb.richtext.block#code",
            "app.atmobb.richtext.block#image"
          ],
          "type": "union"
        },
        "maxLength": 200
      },
      "parent": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "A specific reply this responds to, for quote-chains. Absent means replying to the thread."
      },
      "thread": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "The app.atmobb.discussion.thread being replied to."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A reply in a thread. Lives in the author's repo. Flat by default; parent enables quote-chain threading."
}

Lexicon Garden

@