action rudder_update_cve { label: "Update CVE database from remote source" description: "Update CVE database from remote source" provider: rudder method: POST path: "/cve/update/" encoding: json input: { type: "object" description: "CVE update config" properties: { url: { type: "string" description: "Url used to update CVE, will default to one set in config" } years: { type: "array" items: { type: "string" description: "Year of the CVE archive to download" } } } } output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["updateCVE"] } data: { type: "object" required: ["CVEs"] properties: { CVEs: { type: "integer" } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }