org.stormlightlabs.malfestio.thread.comment

desertthunder.dev

Documentation

A comment on a deck, card, or note.

main record

A comment on a deck, card, or note.

Record Key tid Timestamp-based ID

Properties

body string Required

The comment text.

maxLength: 5000 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

replyTo string at-uri Optional

The parent comment if this is a reply.

subjectRef string at-uri Required

The root subject being commented on.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subjectRef",
      "body",
      "createdAt"
    ],
    "properties": {
      "body": {
        "type": "string",
        "maxLength": 5000,
        "description": "The comment text."
      },
      "replyTo": {
        "type": "string",
        "format": "at-uri",
        "description": "The parent comment if this is a reply."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "subjectRef": {
        "type": "string",
        "format": "at-uri",
        "description": "The root subject being commented on."
      }
    }
  },
  "description": "A comment on a deck, card, or note."
}

Lexicon Garden

@