# place.pollen.feed.reaction

> Published by [keith.pollen.place](https://lexicon.garden/identity/did:plc:nwgfqqv7a56aicy3d3um37ch)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.feed.reaction)
- [Documentation](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.feed.reaction/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:nwgfqqv7a56aicy3d3um37ch/place.pollen.feed.reaction/examples)

## Definitions

### `place.pollen.feed.reaction`

**Type**: `record`

A reaction to a post.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `subject` | `string` (at-uri) | Yes | AT URI of the post being reacted to. |
| `createdAt` | `string` (datetime) | Yes | Client-declared timestamp when the reaction was created. |
| `reactionType` | `string` | Yes | The type of reaction. |

## Raw Schema

```json
{
  "id": "place.pollen.feed.reaction",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "subject",
          "reactionType",
          "createdAt"
        ],
        "properties": {
          "subject": {
            "type": "string",
            "format": "at-uri",
            "description": "AT URI of the post being reacted to."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Client-declared timestamp when the reaction was created."
          },
          "reactionType": {
            "enum": [
              "bloom",
              "seed",
              "sparkle",
              "flame",
              "laugh",
              "skull",
              "cry",
              "heart",
              "wow",
              "think"
            ],
            "type": "string",
            "maxLength": 20,
            "description": "The type of reaction."
          }
        }
      },
      "description": "A reaction to a post."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
