search_books_by_title
Search for books in a bookstore inventory by entering a title query to find specific publications and availability information.
Instructions
Search books by title.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title_query | Yes |
Input Schema (JSON Schema)
{
"properties": {
"title_query": {
"title": "Title Query",
"type": "string"
}
},
"required": [
"title_query"
],
"type": "object"
}