action cisco_get_security_advisories_oval_severity_severity_lastpublished { label: "get_security_advisories_oval_severity_severity_lastpublished" description: "Used to obtain all security advisories for a given security impact rating (critical, high, medium, or low) in OVAL format.\n" provider: cisco method: GET path: "/security/advisories/oval/severity/{severity}/lastpublished" encoding: json input: { type: "object" properties: { endDate: { type: "string" } severity: { type: "string" } startDate: { type: "string" } } required: ["endDate", "severity", "startDate"] additionalProperties: false } output: { type: "object" additionalProperties: true } }