# is.logue.block.listItem

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

## 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:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.listItem)
- [Documentation](https://lexicon.garden/lexicon/did:plc:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.listItem/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:6xpq2upvl7j6p3ct6rgbb4pd/is.logue.block.listItem/examples)

## Definitions

### `is.logue.block.listItem`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `array` | Yes | Array of block content (text or nested lists) |

## Raw Schema

```json
{
  "id": "is.logue.block.listItem",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "content"
      ],
      "properties": {
        "content": {
          "type": "array",
          "items": {
            "refs": [
              "is.logue.block.text",
              "is.logue.block.unorderedList",
              "is.logue.block.orderedList"
            ],
            "type": "union"
          },
          "description": "Array of block content (text or nested lists)"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "List item within ordered or unordered lists. Can contain text blocks and nested lists."
}
```
