site.mochott.series

tokimeki.blue

Documentation

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

main record

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

Record Key tid Timestamp-based ID

Properties

articles array of string at-uri Optional

Ordered list of article record URIs included in the series.

createdAt string datetime Required

Timestamp when the series was created.

description string Optional

Optional description of the series.

maxGraphemes: 1000 graphemes
slug string Required

URL slug of the series, unique per author. Lowercase letters, numbers, hyphens, and underscores.

maxLength: 100 bytes
status string Required

Publication status of the series.

Known values: ongoing, completed
title string Required

Display title of the series.

maxGraphemes: 200 graphemes
updatedAt string datetime Optional

Timestamp when the series was last updated.

View raw schema
{
  "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."
}

Lexicon Garden

@