action vimeo_get_comment { label: "Get a specific video comment" provider: vimeo method: GET path: "/videos/{video_id}/comments/{comment_id}" encoding: json input: { type: "object" properties: { comment_id: { type: "number" } video_id: { type: "number" } } required: ["comment_id", "video_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }