blue.moji.feed.defs

moji.blue

Documentation

reactionGroup object

Aggregated reactions to a subject, grouped by emoji item URI.

Properties

count integer Required

No description available.

minimum: 0
viewer string at-uri Optional

AT-URI of the requesting account's reaction record in this group, if any. Enables un-reacting.

View raw schema
{
  "type": "object",
  "required": [
    "emoji",
    "count"
  ],
  "properties": {
    "count": {
      "type": "integer",
      "minimum": 0
    },
    "emoji": {
      "ref": "blue.moji.feed.reaction#emojiRef",
      "type": "ref"
    },
    "viewer": {
      "type": "string",
      "format": "at-uri",
      "description": "AT-URI of the requesting account's reaction record in this group, if any. Enables un-reacting."
    }
  },
  "description": "Aggregated reactions to a subject, grouped by emoji item URI."
}
reactionView object

A single reaction by a single actor.

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

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",
    "actor",
    "emoji",
    "createdAt"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri"
    },
    "actor": {
      "ref": "app.bsky.actor.defs#profileViewBasic",
      "type": "ref"
    },
    "emoji": {
      "ref": "blue.moji.feed.reaction#emojiRef",
      "type": "ref"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    }
  },
  "description": "A single reaction by a single actor."
}

Lexicon Garden

@