action isbndb_get_author_name { label: "Gets author details" description: "Returns the name and a list of books by the author." provider: isbndb method: GET path: "/author/{name}" encoding: json input: { type: "object" properties: { name: { type: "string" } page: { type: "string" } pageSize: { type: "string" } } required: ["name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }