org.impactindexer.review.comment

gainforest.earth

Documentation

A text comment on a subject.

main record

A text comment on a subject.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Timestamp when the comment was created.

replyTo string at-uri Optional

Optional AT-URI of another comment this is replying to, enabling threaded discussions.

text string Required

The comment text.

maxLength: 20480 bytesmaxGraphemes: 6000 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "text",
      "createdAt"
    ],
    "properties": {
      "text": {
        "type": "string",
        "maxLength": 20480,
        "description": "The comment text.",
        "maxGraphemes": 6000
      },
      "replyTo": {
        "type": "string",
        "format": "at-uri",
        "description": "Optional AT-URI of another comment this is replying to, enabling threaded discussions."
      },
      "subject": {
        "ref": "org.impactindexer.review.defs#subjectRef",
        "type": "ref",
        "description": "The subject being commented on."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the comment was created."
      }
    }
  },
  "description": "A text comment on a subject."
}

Lexicon Garden

@