# im.flushing.reaction

> Published by [flushes.app](https://lexicon.garden/identity/did:plc:omyqslmybfah7a5shue7hnqz)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:omyqslmybfah7a5shue7hnqz/im.flushing.reaction)
- [Documentation](https://lexicon.garden/lexicon/did:plc:omyqslmybfah7a5shue7hnqz/im.flushing.reaction/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:omyqslmybfah7a5shue7hnqz/im.flushing.reaction/examples)

## Definitions

### `im.flushing.reaction`

**Type**: `record`

A reaction to a flush.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `emoji` | `string` | Yes | A single emoji. |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | The flush being reacted to. |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "im.flushing.reaction",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "emoji",
          "createdAt"
        ],
        "properties": {
          "emoji": {
            "type": "string",
            "maxLength": 32,
            "description": "A single emoji.",
            "maxGraphemes": 1
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "The flush being reacted to."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A reaction to a flush."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
