org.stormlightlabs.malfestio.collection

desertthunder.dev

Documentation

A curated collection or learning path.

main record

A curated collection or learning path.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 3000 bytes
items array of object Optional

Ordered items in the collection.

language string Optional

Language code for the collection content (e.g., 'en', 'es', 'fr').

maxLength: 20 bytes
tags array of string Optional

No description available.

maxLength: 64 items
title string Required

No description available.

maxLength: 300 bytes
updatedAt string datetime Optional

Timestamp of last update.

visibility string Optional

Visibility setting for the collection.

maxLength: 100 bytes
Known values: private, unlisted, public
Default: public
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "createdAt"
    ],
    "properties": {
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 100
        },
        "maxLength": 64
      },
      "items": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "type",
            "ref"
          ],
          "properties": {
            "ref": {
              "type": "string",
              "format": "at-uri"
            },
            "note": {
              "type": "string",
              "maxLength": 1000,
              "description": "Curator's note about this item."
            },
            "type": {
              "type": "string",
              "maxLength": 100,
              "knownValues": [
                "deck",
                "note",
                "article",
                "lecture"
              ]
            }
          }
        },
        "description": "Ordered items in the collection."
      },
      "title": {
        "type": "string",
        "maxLength": 300
      },
      "language": {
        "type": "string",
        "maxLength": 20,
        "description": "Language code for the collection content (e.g., 'en', 'es', 'fr')."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of last update."
      },
      "visibility": {
        "type": "string",
        "default": "public",
        "maxLength": 100,
        "description": "Visibility setting for the collection.",
        "knownValues": [
          "private",
          "unlisted",
          "public"
        ]
      },
      "description": {
        "type": "string",
        "maxLength": 3000
      }
    }
  },
  "description": "A curated collection or learning path."
}

Lexicon Garden

@