action patrowl_status_scan_page { label: "Status of a scan" description: "Status of a scan identified by id." provider: patrowl method: GET path: "/status/{scanId}" encoding: json input: { type: "object" properties: { scanId: { type: "integer" } } required: ["scanId"] additionalProperties: false } output: { properties: { page: { type: "string" } status: { type: "string" } } } }