# site.mochott.series

> Published by [tokimeki.blue](https://lexicon.garden/identity/did:plc:4tr5dqti7nmu6g2czpthntak)

✓ This is the authoritative definition for this NSID.

## Description

A series record. Represents an ordered collection of articles published as a serial.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/site.mochott.series)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/site.mochott.series/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4tr5dqti7nmu6g2czpthntak/site.mochott.series/examples)

## Definitions

### `site.mochott.series`

**Type**: `record`

Record describing a series (serial publication) of articles owned by the account author.

**Key**: `tid`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `slug` | `string` | Yes | URL slug of the series, unique per author. Lowercase letters, numbers, hyphens, and underscores. |
| `title` | `string` | Yes | Display title of the series. |
| `status` | `string` | Yes | Publication status of the series. |
| `articles` | `array` | No | Ordered list of article record URIs included in the series. |
| `createdAt` | `string` (datetime) | Yes | Timestamp when the series was created. |
| `updatedAt` | `string` (datetime) | No | Timestamp when the series was last updated. |
| `description` | `string` | No | Optional description of the series. |

## Raw Schema

```json
{
  "id": "site.mochott.series",
  "defs": {
    "main": {
      "key": "tid",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "title",
          "slug",
          "status",
          "createdAt"
        ],
        "properties": {
          "slug": {
            "type": "string",
            "maxLength": 100,
            "description": "URL slug of the series, unique per author. Lowercase letters, numbers, hyphens, and underscores."
          },
          "title": {
            "type": "string",
            "description": "Display title of the series.",
            "maxGraphemes": 200
          },
          "status": {
            "type": "string",
            "description": "Publication status of the series.",
            "knownValues": [
              "ongoing",
              "completed"
            ]
          },
          "articles": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "at-uri"
            },
            "description": "Ordered list of article record URIs included in the series."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the series was created."
          },
          "updatedAt": {
            "type": "string",
            "format": "datetime",
            "description": "Timestamp when the series was last updated."
          },
          "description": {
            "type": "string",
            "description": "Optional description of the series.",
            "maxGraphemes": 1000
          }
        }
      },
      "description": "Record describing a series (serial publication) of articles owned by the account author."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1,
  "revision": 1,
  "description": "A series record. Represents an ordered collection of articles published as a serial."
}
```
