# social.colibri.reaction

> Published by [colibri.social](https://lexicon.garden/identity/did:plc:mprdjqjluoswa7awzggaggj3)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.reaction)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.reaction/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.reaction/examples)

## Definitions

### `social.colibri.reaction`

**Type**: `record`

A reaction on a Colibri message.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `$type` | `string` (nsid) | No | The type of the record. |
| `emoji` | `string` | No | The emoji of the reaction. This allows for any string to support for custom emojis later down the line. |
| `targetMessage` | `string` (record-key) | No | The message this relation belongs to. |

## Raw Schema

```json
{
  "id": "social.colibri.reaction",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "name",
          "type",
          "category"
        ],
        "properties": {
          "$type": {
            "type": "string",
            "format": "nsid",
            "description": "The type of the record."
          },
          "emoji": {
            "type": "string",
            "description": "The emoji of the reaction. This allows for any string to support for custom emojis later down the line."
          },
          "targetMessage": {
            "type": "string",
            "format": "record-key",
            "description": "The message this relation belongs to."
          }
        }
      },
      "description": "A reaction on a Colibri message."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1
}
```
