app.bivri.feed.comment

lexicons.bivri.app

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

content string Required

Comment text.

maxLength: 10000 bytesmaxGraphemes: 1000 graphemes
createdAt string datetime Required

Client-declared timestamp of when the comment was posted.

updatedAt string datetime Optional

Client-declared timestamp of the last edit to this record.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "content",
      "createdAt"
    ],
    "properties": {
      "parent": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "Strong reference to the comment being replied to. Absent on a top-level comment."
      },
      "content": {
        "type": "string",
        "maxLength": 10000,
        "description": "Comment text.",
        "maxGraphemes": 1000
      },
      "subject": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "Strong reference to the artwork the comment is on."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp of when the comment was posted."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp of the last edit to this record."
      }
    }
  }
}

Lexicon Garden

@