restock_book
Add stock to a book by specifying the book ID and quantity to increase inventory levels in the bookstore management system.
Instructions
Add stock to a book.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
book_id | Yes | ||
quantity | Yes |
Input Schema (JSON Schema)
{
"properties": {
"book_id": {
"title": "Book Id",
"type": "integer"
},
"quantity": {
"title": "Quantity",
"type": "integer"
}
},
"required": [
"book_id",
"quantity"
],
"type": "object"
}