action anchore_get_image_vulnerability_types { label: "Get vulnerability types" provider: anchore method: GET path: "/images/{imageDigest}/vuln" encoding: json input: { type: "object" properties: { imageDigest: { type: "string" } "x-anchore-account": { type: "string" } } required: ["imageDigest"] additionalProperties: false } output: { type: "array" items: { type: "string" enum: ["all", "os", "non-os"] } } }