# forum.barazo.richtext

> Published by [barazo.forum](https://lexicon.garden/identity/did:plc:7brt3r7rokkjqc4wjgeovnyx)

✓ This is the authoritative definition for this NSID.

## Description

Content format definitions for forum post and reply bodies.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:7brt3r7rokkjqc4wjgeovnyx/forum.barazo.richtext)
- [Documentation](https://lexicon.garden/lexicon/did:plc:7brt3r7rokkjqc4wjgeovnyx/forum.barazo.richtext/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:7brt3r7rokkjqc4wjgeovnyx/forum.barazo.richtext/examples)

## Definitions

### `forum.barazo.richtext#markdown`

**Type**: `object`

Markdown-formatted text content.

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `value` | `string` | Yes | Markdown-formatted text. |

## Raw Schema

```json
{
  "id": "forum.barazo.richtext",
  "defs": {
    "markdown": {
      "type": "object",
      "required": [
        "value"
      ],
      "properties": {
        "value": {
          "type": "string",
          "maxLength": 100000,
          "minLength": 1,
          "description": "Markdown-formatted text."
        }
      },
      "description": "Markdown-formatted text content."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Content format definitions for forum post and reply bodies."
}
```
