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 graphemescreatedAt
string
datetime
Required
Timestamp when the folder was created
description
string
Optional
Description of the folder
maxGraphemes: 280 graphemesicon
string
Optional
Lucide icon name
maxGraphemes: 64 graphemesname
string
Required
Display name of the folder
maxGraphemes: 64 graphemesvisibility
string
Optional
Visibility setting for the folder
maxGraphemes: 32 graphemesKnown values:
public, unlisted, hiddenDefault:
hiddenView 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"
}