site.mochott.minisite

tokimeki.blue

Documentation

Record representing a minisite — a themed sub-site that groups selected articles under a custom slug and design.

main record

Record representing a minisite — a themed sub-site that groups selected articles under a custom slug and design.

Record Key tid Timestamp-based ID

Properties

accentColor string Optional

Accent theme color as a CSS color value.

maxLength: 50 bytes
articles array of ref #articleRef Optional

Ordered references to articles included in this minisite.

maxLength: 1000 items
backgroundColor string Optional

Background theme color as a CSS color value.

maxLength: 50 bytes
createdAt string datetime Required

Timestamp when the minisite was created.

description string Optional

Short description of the minisite, shown in listings and metadata.

maxLength: 3000 bytesmaxGraphemes: 1000 graphemes
designType string Optional

Visual layout style for the minisite.

maxLength: 50 bytes
Known values: blog, document, portfolio
globalSlug string Optional

Globally unique slug for custom domain or top-level URL routing.

maxLength: 100 bytes
icon blob Optional

Icon or logo image for the minisite.

maxSize: 1.0 MB
name string Required

Display name of the minisite.

maxLength: 300 bytesmaxGraphemes: 100 graphemes
primaryColor string Optional

Primary theme color as a CSS color value (e.g. '#3b82f6').

maxLength: 50 bytes
slug string Required

URL-safe identifier for the minisite. Must be lowercase alphanumeric with hyphens or underscores.

maxLength: 100 bytes
sourceRef string Optional

Branch or ref name for the source repository. Defaults to 'main'.

maxLength: 200 bytes
sourceRepo string Optional

Repository identifier when sourceType is 'tangled'.

maxLength: 500 bytes
sourceType string Optional

Content source type for the minisite.

maxLength: 50 bytes
Known values: local, tangled
updatedAt string datetime Optional

Timestamp when the minisite was last updated.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "slug",
      "createdAt"
    ],
    "properties": {
      "icon": {
        "type": "blob",
        "accept": [
          "image/png",
          "image/jpeg",
          "image/webp"
        ],
        "maxSize": 1000000,
        "description": "Icon or logo image for the minisite."
      },
      "name": {
        "type": "string",
        "maxLength": 300,
        "description": "Display name of the minisite.",
        "maxGraphemes": 100
      },
      "slug": {
        "type": "string",
        "maxLength": 100,
        "description": "URL-safe identifier for the minisite. Must be lowercase alphanumeric with hyphens or underscores."
      },
      "articles": {
        "type": "array",
        "items": {
          "ref": "#articleRef",
          "type": "ref"
        },
        "maxLength": 1000,
        "description": "Ordered references to articles included in this minisite."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the minisite was created."
      },
      "sourceRef": {
        "type": "string",
        "maxLength": 200,
        "description": "Branch or ref name for the source repository. Defaults to 'main'."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the minisite was last updated."
      },
      "designType": {
        "type": "string",
        "maxLength": 50,
        "description": "Visual layout style for the minisite.",
        "knownValues": [
          "blog",
          "document",
          "portfolio"
        ]
      },
      "globalSlug": {
        "type": "string",
        "maxLength": 100,
        "description": "Globally unique slug for custom domain or top-level URL routing."
      },
      "sourceRepo": {
        "type": "string",
        "maxLength": 500,
        "description": "Repository identifier when sourceType is 'tangled'."
      },
      "sourceType": {
        "type": "string",
        "maxLength": 50,
        "description": "Content source type for the minisite.",
        "knownValues": [
          "local",
          "tangled"
        ]
      },
      "accentColor": {
        "type": "string",
        "maxLength": 50,
        "description": "Accent theme color as a CSS color value."
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "description": "Short description of the minisite, shown in listings and metadata.",
        "maxGraphemes": 1000
      },
      "primaryColor": {
        "type": "string",
        "maxLength": 50,
        "description": "Primary theme color as a CSS color value (e.g. '#3b82f6')."
      },
      "backgroundColor": {
        "type": "string",
        "maxLength": 50,
        "description": "Background theme color as a CSS color value."
      }
    }
  },
  "description": "Record representing a minisite — a themed sub-site that groups selected articles under a custom slug and design."
}
articleRef object

A reference to an article record included in a minisite.

Properties

uri string at-uri Required

AT URI of the referenced article record.

View raw schema
{
  "type": "object",
  "required": [
    "uri"
  ],
  "properties": {
    "uri": {
      "type": "string",
      "format": "at-uri",
      "description": "AT URI of the referenced article record."
    }
  },
  "description": "A reference to an article record included in a minisite."
}

Lexicon Garden

@