action isbndb_get_subjects_query { label: "Search subjects" description: "This returns a list of subjects that match the given query" provider: isbndb method: GET path: "/subjects/{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 } }