# reaction

From **GitHub v3 REST API**.

Reactions to conversations provide a way to help people express their feelings more simply and effectively.

- Type: `object`

## Properties

### `content`

- Required: true
- Type: `string`
- Example: `heart`
- Allowed values: `"+1"`, `"-1"`, `"laugh"`, `"confused"`, `"heart"`, `"hooray"`, `"rocket"`, `"eyes"`

The reaction to use

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2016-05-20T20:09:31Z`

### `id`

- Required: true
- Type: `integer`
- Example: `1`

### `node_id`

- Required: true
- Type: `string`
- Example: `MDg6UmVhY3Rpb24x`

### `user`

- Required: true
- Type: `object`
- Nullable: true

Simple User

## JSON Schema

```json
{"description":"Reactions to conversations provide a way to help people express their feelings more simply and effectively.","properties":{"content":{"description":"The reaction to use","enum":["+1","-1","laugh","confused","heart","hooray","rocket","eyes"],"example":"heart","type":"string"},"created_at":{"example":"2016-05-20T20:09:31Z","format":"date-time","type":"string"},"id":{"example":1,"type":"integer"},"node_id":{"example":"MDg6UmVhY3Rpb24x","type":"string"},"user":{"$ref":"#/components/schemas/nullable-simple-user"}},"required":["id","node_id","user","content","created_at"],"title":"Reaction","type":"object"}
```
