action isbndb_get_authors_query { label: "Search authors" description: "This returns a list of authors whos name matches the given query" provider: isbndb method: GET path: "/authors/{query}" encoding: json input: { type: "object" properties: { page: { type: "string" } pageSize: { type: "string" } query: { type: "string" } } required: ["query"] additionalProperties: false } output: { type: "object" additionalProperties: true } }