action cisco_get_security_advisories_cvrf_latest_number { label: "get_security_advisories_cvrf_latest_number" description: "Used to obtain all the latest security advisories in CVRF format given an absolute number. For instance, the latest 10 or latest 5.\n" provider: cisco method: GET path: "/security/advisories/cvrf/latest/{number}" encoding: json input: { type: "object" properties: { number: { type: "string" } } required: ["number"] additionalProperties: false } output: { type: "object" additionalProperties: true } }