at.margin.reply

margin.at

Documentation

A reply to an annotation (motivation: replying)

main record

A reply to an annotation (motivation: replying)

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

format string Optional

MIME type of the text content

Default: text/plain
parent ref #replyRef Required

Reference to the parent annotation or reply

root ref #replyRef Required

Reference to the root annotation of the thread

text string Required

Reply text content

maxLength: 10000 bytesmaxGraphemes: 3000 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "parent",
      "root",
      "text",
      "createdAt"
    ],
    "properties": {
      "root": {
        "ref": "#replyRef",
        "type": "ref",
        "description": "Reference to the root annotation of the thread"
      },
      "text": {
        "type": "string",
        "maxLength": 10000,
        "description": "Reply text content",
        "maxGraphemes": 3000
      },
      "format": {
        "type": "string",
        "default": "text/plain",
        "description": "MIME type of the text content"
      },
      "parent": {
        "ref": "#replyRef",
        "type": "ref",
        "description": "Reference to the parent annotation or reply"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "A reply to an annotation (motivation: replying)"
}
replyRef object

Strong reference to an annotation or reply

Properties

cid string cid Required

A content identifier (CID) referencing immutable data.

uri string at-uri Required

An AT Protocol URI (e.g., at://did:plc:xyz/app.bsky.feed.post/abc).

View raw schema
{
  "type": "object",
  "required": [
    "uri",
    "cid"
  ],
  "properties": {
    "cid": {
      "type": "string",
      "format": "cid"
    },
    "uri": {
      "type": "string",
      "format": "at-uri"
    }
  },
  "description": "Strong reference to an annotation or reply"
}

Lexicon Garden

@