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