# app.atmobb.discussion.reply

> Published by [lexicons.atmobb.app](https://lexicon.garden/identity/did:plc:dqnwiguwsbb6uwrm7a2rsff2)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:dqnwiguwsbb6uwrm7a2rsff2/app.atmobb.discussion.reply)
- [Documentation](https://lexicon.garden/lexicon/did:plc:dqnwiguwsbb6uwrm7a2rsff2/app.atmobb.discussion.reply/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:dqnwiguwsbb6uwrm7a2rsff2/app.atmobb.discussion.reply/examples)

## Definitions

### `app.atmobb.discussion.reply`

**Type**: `record`

A reply in a thread. Lives in the author's repo. Flat by default; parent enables quote-chain threading.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `body` | `array` | Yes |  |
| `parent` | `ref` → `com.atproto.repo.strongRef` | No | A specific reply this responds to, for quote-chains. Absent means replying to the thread. |
| `thread` | `ref` → `com.atproto.repo.strongRef` | Yes | The app.atmobb.discussion.thread being replied to. |
| `createdAt` | `string` (datetime) | No |  |

## Raw Schema

```json
{
  "id": "app.atmobb.discussion.reply",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "thread",
          "body"
        ],
        "properties": {
          "body": {
            "type": "array",
            "items": {
              "refs": [
                "app.atmobb.richtext.block#text",
                "app.atmobb.richtext.block#quote",
                "app.atmobb.richtext.block#code",
                "app.atmobb.richtext.block#image"
              ],
              "type": "union"
            },
            "maxLength": 200
          },
          "parent": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "A specific reply this responds to, for quote-chains. Absent means replying to the thread."
          },
          "thread": {
            "ref": "com.atproto.repo.strongRef",
            "type": "ref",
            "description": "The app.atmobb.discussion.thread being replied to."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime"
          }
        }
      },
      "description": "A reply in a thread. Lives in the author's repo. Flat by default; parent enables quote-chain threading."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
