action vimeo_get_videos_with_tag { label: "Get all the videos with a specific tag" provider: vimeo method: GET path: "/tags/{word}/videos" encoding: json input: { type: "object" properties: { direction: { type: "string" enum: ["asc", "desc"] } page: { type: "number" } per_page: { type: "number" } sort: { type: "string" enum: ["created_time", "duration", "name"] } word: { type: "string" } } required: ["word"] additionalProperties: false } output: { type: "object" additionalProperties: true } }