# is.logue.block.text

> Published by [logue.is](https://lexicon.garden/identity/did:plc:6xpq2upvl7j6p3ct6rgbb4pd)

## Description

A text block containing plain text content with optional formatting via facets.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.text)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.text/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.text/examples)

## Definitions

### `is.logue.block.text`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `facets` | `array` | No | Facets for text formatting and features |
| `plaintext` | `string` | Yes | The plain text content |

## Raw Schema

```json
{
  "id": "is.logue.block.text",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "plaintext"
      ],
      "properties": {
        "facets": {
          "type": "array",
          "items": {
            "ref": "is.logue.richtext.facet",
            "type": "ref"
          },
          "description": "Facets for text formatting and features"
        },
        "plaintext": {
          "type": "string",
          "description": "The plain text content"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "A text block containing plain text content with optional formatting via facets."
}
```
