com.lognship.log.reaction

lognship.com

Documentation

A reaction to a log entry.

main record

A reaction to a log entry.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

Client-declared timestamp when this reaction was originally created.

value string Required

The kind of reaction.

maxLength: 320 bytesmaxGraphemes: 32 graphemes
Known values: like, dislike, looking, celebrate, support
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "subject",
      "value",
      "createdAt"
    ],
    "properties": {
      "value": {
        "type": "string",
        "maxLength": 320,
        "description": "The kind of reaction.",
        "knownValues": [
          "like",
          "dislike",
          "looking",
          "celebrate",
          "support"
        ],
        "maxGraphemes": 32
      },
      "subject": {
        "ref": "com.atproto.repo.strongRef",
        "type": "ref",
        "description": "The entry being reacted to."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Client-declared timestamp when this reaction was originally created."
      }
    }
  },
  "description": "A reaction to a log entry."
}

Lexicon Garden

@