# social.colibri.beta.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.beta.reaction)
- [Documentation](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.reaction/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:mprdjqjluoswa7awzggaggj3/social.colibri.beta.reaction/examples)

## Definitions

### `social.colibri.beta.reaction`

**Type**: `record`

A reaction to a message in the same channel space.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `emoji` | `string` | Yes | The reaction, as an emoji or a custom shortcode. |
| `target` | `ref` → `social.colibri.beta.defs#recordRef` | Yes | The message being reacted to. |

## Raw Schema

```json
{
  "id": "social.colibri.beta.reaction",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "emoji",
          "target"
        ],
        "properties": {
          "emoji": {
            "type": "string",
            "maxLength": 64,
            "description": "The reaction, as an emoji or a custom shortcode."
          },
          "target": {
            "ref": "social.colibri.beta.defs#recordRef",
            "type": "ref",
            "description": "The message being reacted to."
          }
        }
      },
      "description": "A reaction to a message in the same channel space."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
