bond.biblio.book

lexicon.store View official

Documentation

A book in the user's library

main record

A book in the user's library

Record Key tid Timestamp-based ID

Properties

authors string Required

Author name(s). For multiple authors, use tab-separation for cross-lexicon compatibility with buzz.bookhive.book

maxLength: 2048 bytes
createdAt string datetime Required

When this record was created

lists array of string at-uri Optional

AT-URIs of reading lists this book is applied to

title string Required

The book's title

maxLength: 500 bytesmaxGraphemes: 200 graphemes
View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "title",
      "authors",
      "createdAt"
    ],
    "properties": {
      "lists": {
        "type": "array",
        "items": {
          "type": "string",
          "format": "at-uri"
        },
        "description": "AT-URIs of reading lists this book is applied to"
      },
      "title": {
        "type": "string",
        "maxLength": 500,
        "description": "The book's title",
        "maxGraphemes": 200
      },
      "authors": {
        "type": "string",
        "maxLength": 2048,
        "description": "Author name(s). For multiple authors, use tab-separation for cross-lexicon compatibility with buzz.bookhive.book"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime",
        "description": "When this record was created"
      }
    }
  },
  "description": "A book in the user's library"
}

Lexicon Garden

@