action isbndb_get_book_isbn { label: "Gets book details" description: "Returns the book details" provider: isbndb method: GET path: "/book/{isbn}" encoding: json input: { type: "object" properties: { isbn: { type: "string" } } required: ["isbn"] additionalProperties: false } output: { type: "object" additionalProperties: true } }