action rudder_get_last_cvecheck { label: "Get last CVE check result" description: "Get last CVE check result" provider: rudder method: GET path: "/cve/check/last" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["getLastCVECheck"] } data: { type: "object" required: ["CVEChecks"] properties: { CVEChecks: { type: "array" items: { type: "object" properties: { cveId: { type: "string" format: "cve id" description: "CVE id" } nodes: { type: "array" description: "Id of Nodes affected by this CVE" items: { type: "string" description: "Node id" } } packages: { type: "array" description: "packages affected by this CVE" items: { type: "object" description: "Packages affected by this CVE" properties: { name: { type: "string" description: "Name of the package affected" } version: { type: "string" description: "Version of the package affected" } } } } } } } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }