action contentgroove_put_api_v1_clips_id { label: "update clip" provider: contentgroove method: PUT path: "/api/v1/clips/{id}" encoding: json input: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["attributes"] properties: { attributes: { type: "object" properties: { end_time: { type: "number" } name: { type: "string" } start_time: { type: "number" } } } } } } } output: { type: "object" additionalProperties: true } }