{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/events/event.grabber.progress.schema.json", "title": "event.grabber.progress", "description": "Crawl progress for the Site Grabber wizard. done true means the file list in grabber.status is final.", "x-direction": "server-to-client", "x-maxRateHz": 4, "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "required": [ "jobId", "found", "crawled", "done" ], "properties": { "jobId": { "type": "string" }, "found": { "type": "integer", "minimum": 0 }, "crawled": { "type": "integer", "minimum": 0 }, "done": { "type": "boolean" }, "currentUrl": { "type": [ "string", "null" ], "format": "uri" } } } } }