{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "createBookPostRequest", "type": "object", "description": "The request body allows users to input the name of the book, ticker", "properties": { "book_name": { "type": "string", "description": "name of the book" }, "ticker": { "type": "string", "description": "Identifier." }, "pagination": { "type": "object", "description": "options for pagination" }, "content": { "type": "array", "description": "Content sections" } } }