{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/events/event.task.removed.schema.json", "title": "event.task.removed", "description": "A task left the list. The client deletes the row; there is nothing further to fetch.", "x-direction": "server-to-client", "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "required": [ "taskId", "deletedFile" ], "properties": { "taskId": { "type": "string", "format": "uuid" }, "deletedFile": { "type": "boolean" } } } } }