action rudder_get_cvecheck_configuration { label: "Get CVE check config" description: "Get CVE check config" provider: rudder method: GET path: "/cve/check/config" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["getCVECheckConfiguration"] } data: { type: "object" properties: { apiKey: { type: "string" description: "Token used by to contact the API to check CVE" } url: { type: "string" description: "Url used to check CVE" } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }