# art.cllctv.block.listItem

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

✓ This is the authoritative definition for this NSID.

## Description

List item within ordered or unordered lists. Can contain text blocks and nested lists.

## Links

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

## Definitions

### `art.cllctv.block.listItem`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `value` | `integer` | No |  |
| `checked` | `boolean` | No |  |
| `content` | `union` | Yes |  |

## Raw Schema

```json
{
  "id": "art.cllctv.block.listItem",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "content"
      ],
      "properties": {
        "value": {
          "type": "integer"
        },
        "checked": {
          "type": "boolean"
        },
        "content": {
          "refs": [
            "art.cllctv.block.text",
            "art.cllctv.block.bulletList",
            "art.cllctv.block.orderedList"
          ],
          "type": "union"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "List item within ordered or unordered lists. Can contain text blocks and nested lists."
}
```
