# im.flushing.reply

> 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.reply)
- [Documentation](https://lexicon.garden/lexicon/did:plc:omyqslmybfah7a5shue7hnqz/im.flushing.reply/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:omyqslmybfah7a5shue7hnqz/im.flushing.reply/examples)

## Definitions

### `im.flushing.reply`

**Type**: `record`

A reply to a flush, or to another reply.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes |  |
| `emoji` | `string` | No |  |
| `reply` | `ref` → `#replyRef` | Yes |  |
| `createdAt` | `string` (datetime) | Yes |  |

### `im.flushing.reply#replyRef`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `root` | `ref` → `com.atproto.repo.strongRef` | Yes |  |
| `parent` | `ref` → `com.atproto.repo.strongRef` | Yes |  |

## Raw Schema

```json
{
  "id": "im.flushing.reply",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "text",
          "reply",
          "createdAt"
        ],
        "properties": {
          "text": {
            "type": "string",
            "maxLength": 1000,
            "maxGraphemes": 240
          },
          "emoji": {
            "type": "string",
            "maxLength": 32,
            "maxGraphemes": 1
          },
          "reply": {
            "ref": "#replyRef",
            "type": "ref"
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A reply to a flush, or to another reply."
    },
    "replyRef": {
      "type": "object",
      "required": [
        "root",
        "parent"
      ],
      "properties": {
        "root": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        },
        "parent": {
          "ref": "com.atproto.repo.strongRef",
          "type": "ref"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
