# art.cllctv.block.blockquote

> Published by [cllctv.art](https://lexicon.garden/identity/did:plc:gqpqghnqiowg5424adjwmhmg)

✓ This is the authoritative definition for this NSID.

## Description

Blockquote for quoted text or citations. Contains text blocks.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.blockquote)
- [Documentation](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.blockquote/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:gqpqghnqiowg5424adjwmhmg/art.cllctv.block.blockquote/examples)

## Definitions

### `art.cllctv.block.blockquote`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `text` | `string` | Yes | The plain text content of the blockquote |
| `facets` | `array` | No | Facets for text formatting and features |
| `format` | `string` | No |  |
| `indent` | `integer` | No |  |
| `direction` | `string` | No |  |

## Raw Schema

```json
{
  "id": "art.cllctv.block.blockquote",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "text"
      ],
      "properties": {
        "text": {
          "type": "string",
          "description": "The plain text content of the blockquote"
        },
        "facets": {
          "type": "array",
          "items": {
            "ref": "art.cllctv.block.text#facet",
            "type": "ref"
          },
          "description": "Facets for text formatting and features"
        },
        "format": {
          "type": "string",
          "knownValues": [
            "left",
            "start",
            "center",
            "right",
            "end",
            "justify"
          ]
        },
        "indent": {
          "type": "integer",
          "minimum": 0
        },
        "direction": {
          "type": "string",
          "knownValues": [
            "ltr",
            "rtl"
          ]
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Blockquote for quoted text or citations. Contains text blocks."
}
```
