# art.cllctv.block.timeline

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

✓ This is the authoritative definition for this NSID.

## Links

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

## Definitions

### `art.cllctv.block.timeline#date`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `type` | `string` | Yes |  |
| `value` | `string` | Yes |  |

### `art.cllctv.block.timeline#item`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `date` | `ref` → `#date` | Yes |  |
| `title` | `string` | No |  |
| `content` | `array` | Yes |  |

### `art.cllctv.block.timeline`

**Type**: `object`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `content` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "art.cllctv.block.timeline",
  "defs": {
    "date": {
      "type": "object",
      "required": [
        "value",
        "type"
      ],
      "properties": {
        "type": {
          "type": "string",
          "knownValues": [
            "yearly",
            "monthly",
            "custom"
          ]
        },
        "value": {
          "type": "string"
        }
      }
    },
    "item": {
      "type": "object",
      "required": [
        "date",
        "content"
      ],
      "properties": {
        "date": {
          "ref": "#date",
          "type": "ref"
        },
        "title": {
          "type": "string"
        },
        "content": {
          "type": "array",
          "items": {
            "refs": [
              "art.cllctv.block.text",
              "art.cllctv.block.bulletList",
              "art.cllctv.block.orderedList"
            ],
            "type": "union"
          }
        }
      }
    },
    "main": {
      "type": "object",
      "required": [
        "content"
      ],
      "properties": {
        "content": {
          "type": "array",
          "items": {
            "ref": "#item",
            "type": "ref"
          }
        }
      }
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
