# tech.tokimeki.kaku.reaction

> Published by [tokimeki.blue](https://lexicon.garden/identity/did:plc:4tr5dqti7nmu6g2czpthntak)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.kaku.reaction)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.kaku.reaction/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/tech.tokimeki.kaku.reaction/examples)

## Definitions

### `tech.tokimeki.kaku.reaction`

**Type**: `record`

A reaction to a post

**Key**: `any`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `type` | `string` | Yes | Type of reaction |
| `subject` | `ref` → `com.atproto.repo.strongRef` | Yes | Reference to the post being reacted to |
| `createdAt` | `string` (datetime) | Yes |  |

## Raw Schema

```json
{
  "id": "tech.tokimeki.kaku.reaction",
  "defs": {
    "main": {
      "key": "any",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "type",
          "createdAt"
        ],
        "properties": {
          "type": {
            "type": "string",
            "description": "Type of reaction",
            "knownValues": [
              "suki",
              "tasukaru",
              "sugoi",
              "kawaii",
              "kami"
            ]
          },
          "subject": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "Reference to the post being reacted to"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A reaction to a post"
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
