Samza task within a container
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-samza/refs/heads/main/json-schema/apache-samza-task-schema.json", "title": "Task", "description": "Samza task within a container", "type": "object", "properties": { "taskName": { "type": "string", "description": "Task name" }, "containerId": { "type": "string", "description": "Container the task runs on" }, "status": { "type": "string", "description": "Task status" }, "partitions": { "type": "array", "items": { "$ref": "#/components/schemas/Partition" } } } }