action zeno_search_podcasts { label: "searchPodcasts" description: "Search podcasts" provider: zeno method: POST path: "/api/v2/podcasts/search" encoding: json input: { type: "object" description: "Podcast search params" properties: { filters: { type: "object" description: "Filters for podcast search" properties: { category: { type: "array" items: { type: "string" } } country: { type: "array" items: { type: "string" } } language: { type: "array" items: { type: "string" } } podcastType: { type: "string" enum: ["podcasts", "shows"] } } } hitsPerPage: { type: "integer" format: "int32" } page: { type: "integer" format: "int32" } query: { type: "string" } } } output: { type: "object" additionalProperties: true } }