get_book_by_id
Retrieve detailed book information by providing a specific book ID to access title, author, and inventory data from the bookstore database.
Instructions
Get book by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
book_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"book_id": {
"title": "Book Id",
"type": "integer"
}
},
"required": [
"book_id"
],
"type": "object"
}