wiki.lichen.note

lichen.wiki

Documentation

A note within a wiki. The rkey is a TID. Human-readable slug lives in the record body.

main record

A note within a wiki. The rkey is a TID. Human-readable slug lives in the record body.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

When the note was created.

slug string Required

Permanent human-readable identifier, used in URLs. Never changes once set.

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
title string Required

Display name for the note. Can be updated freely.

maxLength: 2560 bytesmaxGraphemes: 256 graphemes
wikiRef string at-uri Required

AT-URI of the parent wiki record.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "slug",
      "title",
      "wikiRef",
      "createdAt"
    ],
    "properties": {
      "slug": {
        "type": "string",
        "maxLength": 2560,
        "description": "Permanent human-readable identifier, used in URLs. Never changes once set.",
        "maxGraphemes": 256
      },
      "title": {
        "type": "string",
        "maxLength": 2560,
        "description": "Display name for the note. Can be updated freely.",
        "maxGraphemes": 256
      },
      "wikiRef": {
        "type": "string",
        "format": "at-uri",
        "description": "AT-URI of the parent wiki record."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When the note was created."
      }
    }
  },
  "description": "A note within a wiki. The rkey is a TID. Human-readable slug lives in the record body."
}

Lexicon Garden

@