action contentgroove_put_api_v1_medias_id { label: "update media" provider: contentgroove method: PUT path: "/api/v1/medias/{id}" encoding: json input: { type: "object" required: ["data"] properties: { data: { type: "object" required: ["attributes"] properties: { attributes: { type: "object" properties: { description: { type: "string" } name: { type: "string" } } } } } } } output: { type: "object" additionalProperties: true } }