org.stormlightlabs.malfestio.note

desertthunder.dev

Documentation

A standalone note containing rich text, tags, and links.

main record

A standalone note containing rich text, tags, and links.

Record Key tid Timestamp-based ID

Properties

body string Required

The body content of the note in Markdown format.

maxLength: 100000 bytes
createdAt string datetime Required

Timestamp of creation.

language string Optional

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

maxLength: 20 bytes
tags array of string Optional

Tags associated with the note.

maxLength: 64 items
title string Required

Title of the note.

maxLength: 300 bytes
updatedAt string datetime Optional

Timestamp of last update.

visibility string Optional

Visibility setting for the note.

maxLength: 100 bytes
Known values: private, unlisted, public
Default: private
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "body",
      "createdAt"
    ],
    "properties": {
      "body": {
        "type": "string",
        "maxLength": 100000,
        "description": "The body content of the note in Markdown format."
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 100
        },
        "maxLength": 64,
        "description": "Tags associated with the note."
      },
      "links": {
        "type": "array",
        "items": {
          "type": "object",
          "required": [
            "uri"
          ],
          "properties": {
            "uri": {
              "type": "string",
              "format": "uri"
            },
            "type": {
              "type": "string",
              "maxLength": 100,
              "description": "Type hint for the linked resource."
            },
            "title": {
              "type": "string",
              "maxLength": 500
            }
          }
        },
        "description": "External or internal links referenced in the note."
      },
      "title": {
        "type": "string",
        "maxLength": 300,
        "description": "Title of the note."
      },
      "language": {
        "type": "string",
        "maxLength": 20,
        "description": "Language code for the note content (e.g., 'en', 'es', 'fr')."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of creation."
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp of last update."
      },
      "visibility": {
        "type": "string",
        "default": "private",
        "maxLength": 100,
        "description": "Visibility setting for the note.",
        "knownValues": [
          "private",
          "unlisted",
          "public"
        ]
      }
    }
  },
  "description": "A standalone note containing rich text, tags, and links."
}

Lexicon Garden

@