action patrowl_get_finding_page { label: "Get findings on finished scans" description: "Get findings on finished scans." provider: patrowl method: GET path: "/getfindings/{scanId}" encoding: json input: { type: "object" properties: { scanId: { type: "integer" } } required: ["scanId"] additionalProperties: false } output: { type: "array" items: { type: "object" properties: { confidence: { type: "string" } description: { type: "string" } issue_id: { type: "integer" } meta_links: { type: "array" items: { type: "string" } } meta_risk: { type: "object" properties: { cvss_base_score: { type: "array" items: { type: "string" } } cvss_vector: { type: "array" items: { type: "string" } } exploit_available: { type: "array" items: { type: "string" } } exploitability_ease: { type: "array" items: { type: "string" } } patch_publication_date: { type: "array" items: { type: "string" } } } } meta_tags: { type: "array" items: { type: "string" } } meta_vuln_refs: { type: "object" properties: { bid: { type: "array" items: { type: "string" } } cpe: { type: "array" items: { type: "string" } } cve: { type: "array" items: { type: "string" } } cwe: { type: "array" items: { type: "string" } } } } raw: { type: "string" } severity: { type: "string" enum: ["info", "low", "medium", "high"] } solution: { type: "string" } target_addrs: { type: "array" items: { type: "string" } } target_proto: { type: "array" items: { type: "string" } } timestamp: { type: "string" format: "date-time" } title: { type: "string" } type: { type: "string" } } } } }