action hydramovies_current_movie_data_csv_get { label: "getMovieByIMDBid" description: "Returns a movie using the films unique IMDB identifier" provider: hydramovies method: GET path: "/current-Movie-Data.csv&imdb_id={IMDBid}" encoding: json input: { type: "object" properties: { IMDBid: { type: "string" } } required: ["IMDBid"] additionalProperties: false } output: { type: "object" additionalProperties: true } }