app.hyper-limit.bookmark.list

p24l.bsky.social

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

color string Optional

Hex color code for visual organization

coverImage blob Optional

No description available.

maxSize: 1.0 MB
createdAt string datetime Required

An RFC 3339 formatted timestamp.

description string Optional

No description available.

maxLength: 1000 bytes
icon string Optional

No description available.

Known values: folder, list, star, tag
Default: folder
name string Required

No description available.

maxLength: 100 bytes
parent string at-uri Optional

Reference to parent list for hierarchy

permissions object Optional

No description available.

pinned boolean Optional

Whether this list is pinned for quick access

Default: false
updatedAt string datetime Optional

An RFC 3339 formatted timestamp.

visibility string Required

private: owner only, collaborative: specific users, public: anyone can view

Known values: private, collaborative, public
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "visibility",
      "createdAt"
    ],
    "properties": {
      "icon": {
        "type": "string",
        "default": "folder",
        "knownValues": [
          "folder",
          "list",
          "star",
          "tag"
        ]
      },
      "name": {
        "type": "string",
        "maxLength": 100
      },
      "color": {
        "type": "string",
        "pattern": "^#[0-9A-Fa-f]{6}$",
        "description": "Hex color code for visual organization"
      },
      "parent": {
        "type": "string",
        "format": "at-uri",
        "description": "Reference to parent list for hierarchy"
      },
      "pinned": {
        "type": "boolean",
        "default": false,
        "description": "Whether this list is pinned for quick access"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime"
      },
      "coverImage": {
        "type": "blob",
        "accept": [
          "image/*"
        ],
        "maxSize": 1000000
      },
      "visibility": {
        "type": "string",
        "description": "private: owner only, collaborative: specific users, public: anyone can view",
        "knownValues": [
          "private",
          "collaborative",
          "public"
        ]
      },
      "description": {
        "type": "string",
        "maxLength": 1000
      },
      "permissions": {
        "type": "object",
        "properties": {
          "canAdd": {
            "type": "array",
            "items": {
              "type": "string",
              "format": "did"
            },
            "description": "DIDs that can add bookmarks to this list"
          }
        }
      }
    }
  }
}

Lexicon Garden

@