A required book for a reading list, specified by title and authors for fuzzy matching
Properties
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"
}