action zeno_search_stations { label: "searchStations" description: "Search stations" provider: zeno method: POST path: "/api/v2/stations/search" encoding: json input: { type: "object" description: "Station search params" properties: { filters: { type: "object" description: "Filters for station search" properties: { country: { type: "array" items: { type: "string" } } genre: { type: "array" items: { type: "string" } } language: { type: "array" items: { type: "string" } } } } hitsPerPage: { type: "integer" format: "int32" } page: { type: "integer" format: "int32" } query: { type: "string" } } } output: { type: "object" additionalProperties: true } }