action omdbapi_get_omdb_search { label: "OMDb Search" description: "Find a movie, series or episode from the OMDb by title, IMDb-id or by free-text search" provider: omdbapi method: GET path: "/" encoding: json input: { type: "object" properties: { callback: { type: "string" } i: { type: "string" } page: { type: "string" } plot: { type: "string" } r: { type: "string" } s: { type: "string" } t: { type: "string" } tomatoes: { type: "string" } type: { type: "string" } v: { type: "string" } y: { type: "string" } } required: ["r"] additionalProperties: false } output: { type: "object" additionalProperties: true } }