app.beaconbits.bookmark.folder

beaconbits.app

Documentation

A folder for organizing bookmarks

main record

A folder for organizing bookmarks

Record Key tid Timestamp-based ID

Properties

color string Optional

Hex color code for the folder (e.g., #ff0000)

maxGraphemes: 7 graphemes
createdAt string datetime Required

Timestamp when the folder was created

description string Optional

Description of the folder

maxGraphemes: 280 graphemes
icon string Optional

Lucide icon name

maxGraphemes: 64 graphemes
name string Required

Display name of the folder

maxGraphemes: 64 graphemes
visibility string Optional

Visibility setting for the folder

maxGraphemes: 32 graphemes
Known values: public, unlisted, hidden
Default: hidden
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "createdAt"
    ],
    "properties": {
      "icon": {
        "type": "string",
        "description": "Lucide icon name",
        "maxGraphemes": 64
      },
      "name": {
        "type": "string",
        "description": "Display name of the folder",
        "maxGraphemes": 64
      },
      "color": {
        "type": "string",
        "description": "Hex color code for the folder (e.g., #ff0000)",
        "maxGraphemes": 7
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "Timestamp when the folder was created"
      },
      "visibility": {
        "type": "string",
        "default": "hidden",
        "description": "Visibility setting for the folder",
        "knownValues": [
          "public",
          "unlisted",
          "hidden"
        ],
        "maxGraphemes": 32
      },
      "description": {
        "type": "string",
        "description": "Description of the folder",
        "maxGraphemes": 280
      }
    }
  },
  "description": "A folder for organizing bookmarks"
}

Lexicon Garden

@