org.stormlightlabs.malfestio.deck

desertthunder.dev

Documentation

A collection of flashcards and sources.

main record

A collection of flashcards and sources.

Record Key tid Timestamp-based ID

Properties

cardRefs array of string at-uri Optional

Ordered list of references to cards in this deck.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

Description of the deck context.

maxLength: 3000 bytes
language string Optional

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

maxLength: 20 bytes
license string Optional

License for the deck content.

maxLength: 500 bytes
sourceRefs array of string at-uri Optional

References to source materials (articles, lectures) used in this deck.

tags array of string Optional

No description available.

maxLength: 64 items
title string Required

Title of the deck.

maxLength: 300 bytes
updatedAt string datetime Optional

Timestamp of last update.

visibility string Optional

Visibility setting for the deck.

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
      },
      "title": {
        "type": "string",
        "maxLength": 300,
        "description": "Title of the deck."
      },
      "license": {
        "type": "string",
        "maxLength": 500,
        "description": "License for the deck content."
      },
      "cardRefs": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri"
        },
        "description": "Ordered list of references to cards in this deck."
      },
      "language": {
        "type": "string",
        "maxLength": 20,
        "description": "Language code for the deck content (e.g., 'en', 'es', 'fr')."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of last update."
      },
      "sourceRefs": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri"
        },
        "description": "References to source materials (articles, lectures) used in this deck."
      },
      "visibility": {
        "type": "string",
        "default": "public",
        "maxLength": 100,
        "description": "Visibility setting for the deck.",
        "knownValues": [
          "private",
          "unlisted",
          "public"
        ]
      },
      "description": {
        "type": "string",
        "maxLength": 3000,
        "description": "Description of the deck context."
      }
    }
  },
  "description": "A collection of flashcards and sources."
}

Lexicon Garden

@