bond.biblio.defs

lexicon.store View official

Documentation

bookRequirement object

A required book for a reading list, specified by title and authors for fuzzy matching

Properties

authors string Required

Author name(s), tab-separated for multiple

maxLength: 500 bytesmaxGraphemes: 200 graphemes
title string Required

No description available.

maxLength: 500 bytesmaxGraphemes: 200 graphemes
View raw schema
{
  "type": "object",
  "required": [
    "title",
    "authors"
  ],
  "properties": {
    "title": {
      "type": "string",
      "maxLength": 500,
      "maxGraphemes": 200
    },
    "authors": {
      "type": "string",
      "maxLength": 500,
      "description": "Author name(s), tab-separated for multiple",
      "maxGraphemes": 200
    }
  },
  "description": "A required book for a reading list, specified by title and authors for fuzzy matching"
}

Lexicon Garden

@