social.popfeed.feed.list

bookhive.buzz

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

createdAt string datetime Required

The timestamp when the list was created.

description string Optional

Optional description of the list.

maxLength: 500 bytes
itemOrder array of string uri Optional

An array of item uris in the order they appear in the list. Stored separately from the items themselves to allow for efficient reordering without needing to update each item record.

listType string Optional

The type of list, e.g., 'watchlist', 'favorites', 'to-read', etc.

maxLength: 50 bytes
name string Required

The name of the list.

maxLength: 100 bytes
ordered boolean Optional

Indicates whether the list is ordered or unordered.

tags array of string Optional

Optional array of tags for categorizing or describing the list.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "name",
      "createdAt"
    ],
    "properties": {
      "name": {
        "type": "string",
        "maxLength": 100,
        "description": "The name of the list."
      },
      "tags": {
        "type": "array",
        "items": {
          "type": "string",
          "maxLength": 50
        },
        "description": "Optional array of tags for categorizing or describing the list."
      },
      "ordered": {
        "type": "boolean",
        "description": "Indicates whether the list is ordered or unordered."
      },
      "listType": {
        "type": "string",
        "maxLength": 50,
        "description": "The type of list, e.g., 'watchlist', 'favorites', 'to-read', etc."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "The timestamp when the list was created."
      },
      "itemOrder": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "uri"
        },
        "description": "An array of item uris in the order they appear in the list. Stored separately from the items themselves to allow for efficient reordering without needing to update each item record."
      },
      "description": {
        "type": "string",
        "maxLength": 500,
        "description": "Optional description of the list."
      }
    }
  }
}

Lexicon Garden

@