{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/events/event.task.added.schema.json", "title": "event.task.added", "description": "A task entered the list. summary is always present so a client can insert the row without a follow-up download.get.", "x-direction": "server-to-client", "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "required": [ "taskId", "summary" ], "properties": { "taskId": { "type": "string", "format": "uuid" }, "summary": { "$ref": "https://velox.dev/schema/types/TaskSummary.schema.json" } } } } }