# art.cllctv.block.bulletList

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

✓ This is the authoritative definition for this NSID.

## Description

Unordered list with bullet points. Each item can contain rich content including nested lists.

## Links

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

## Definitions

### `art.cllctv.block.bulletList`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `format` | `string` | No |  |
| `indent` | `integer` | No |  |
| `content` | `array` | Yes |  |
| `direction` | `string` | No |  |

## Raw Schema

```json
{
  "id": "art.cllctv.block.bulletList",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "content"
      ],
      "properties": {
        "format": {
          "type": "string",
          "knownValues": [
            "left",
            "start",
            "center",
            "right",
            "end",
            "justify"
          ]
        },
        "indent": {
          "type": "integer",
          "minimum": 0
        },
        "content": {
          "type": "array",
          "items": {
            "ref": "art.cllctv.block.listItem",
            "type": "ref"
          }
        },
        "direction": {
          "type": "string",
          "knownValues": [
            "ltr",
            "rtl"
          ]
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Unordered list with bullet points. Each item can contain rich content including nested lists."
}
```
