action patrowl_start_scan_page { label: "Start a new scan" description: "Start a new scan." provider: patrowl method: POST path: "/startscan" encoding: json input: { properties: { assets: { type: "array" items: { type: "object" properties: { criticity: { type: "string" enum: ["low", "medium", "high"] } datatype: { type: "string" enum: ["ip", "ip-range", "ip-subnet", "fqdn", "domain", "url", "keyword", "person", "organisation", "path", "application"] } id: { type: "string" } value: { type: "string" } } } } options: { type: "object" } scan_id: { type: "integer" } } } output: { properties: { page: { type: "string" } status: { type: "string" } } } }