action cisco_get_security_advisories_cvrf_severity_severity_firstpublished { label: "get_security_advisories_cvrf_severity_severity_firstpublished" description: "Used to obtain all security advisories for a given security impact rating (critical, high, medium, or low) in CVRF format and additionally filter based of firstpublished start date and enddate\n" provider: cisco method: GET path: "/security/advisories/cvrf/severity/{severity}/firstpublished" 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 } }