# is.logue.block.orderedList

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

## Description

Ordered (numbered) list. Each item can contain rich content including nested lists.

## Links

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

## Definitions

### `is.logue.block.orderedList`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `start` | `integer` | No | Starting number for the ordered list (default: 1) |
| `content` | `array` | Yes | Array of list items |

## Raw Schema

```json
{
  "id": "is.logue.block.orderedList",
  "defs": {
    "main": {
      "type": "object",
      "required": [
        "content"
      ],
      "properties": {
        "start": {
          "type": "integer",
          "minimum": 1,
          "description": "Starting number for the ordered list (default: 1)"
        },
        "content": {
          "type": "array",
          "items": {
            "ref": "is.logue.block.listItem",
            "type": "ref"
          },
          "description": "Array of list items"
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "description": "Ordered (numbered) list. Each item can contain rich content including nested lists."
}
```
