{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Zeoel Team Task",
  "type": "object",
  "properties": {
    "task_id": {
      "type": "string"
    },
    "task_title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "priority": {
      "type": "string"
    },
    "assigned_agent": {
      "type": "string"
    },
    "input_files": {
      "type": "array"
    },
    "output_files": {
      "type": "array"
    },
    "commands": {
      "type": "array"
    },
    "implementation_steps": {
      "type": "array"
    },
    "acceptance_criteria": {
      "type": "array"
    },
    "testing_requirements": {
      "type": "array"
    },
    "security_checks": {
      "type": "array"
    },
    "estimated_effort": {
      "type": "string"
    },
    "dependencies": {
      "type": "array"
    },
    "status": {
      "type": "string"
    }
  },
  "required": [
    "task_id",
    "task_title",
    "assigned_agent",
    "acceptance_criteria",
    "testing_requirements",
    "security_checks",
    "status"
  ],
  "additionalProperties": true
}
