action isbndb_get_publisher_name { label: "Gets publisher details" description: "Returns details and a list of books by the publisher." provider: isbndb method: GET path: "/publisher/{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 } }