fun.tyler.crepe.config

tyler.fun

Documentation

A user's crepe configuration, stored once at rkey `self` in the private space.

main record

A user's crepe configuration, stored once at rkey `self` in the private space.

Record Key literal:self Fixed literal value

Properties

createdAt string datetime Required

An RFC 3339 formatted timestamp.

theme string Optional

Preferred color mode.

Allowed: light, dark, system
updatedAt string datetime Required

Last edit; the last-write-wins clock for the config record.

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "createdAt",
      "updatedAt"
    ],
    "properties": {
      "theme": {
        "enum": [
          "light",
          "dark",
          "system"
        ],
        "type": "string",
        "description": "Preferred color mode."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime",
        "description": "Last edit; the last-write-wins clock for the config record."
      }
    }
  },
  "description": "A user's crepe configuration, stored once at rkey `self` in the private space."
}

Lexicon Garden

@