{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Zeoel Team Sprint",
  "type": "object",
  "properties": {
    "sprint_number": {
      "type": "integer"
    },
    "sprint_goal": {
      "type": "string"
    },
    "business_value": {
      "type": "string"
    },
    "features_included": {
      "type": "array"
    },
    "tasks": {
      "type": "array"
    },
    "dependencies": {
      "type": "array"
    },
    "acceptance_criteria": {
      "type": "array"
    },
    "definition_of_done": {
      "type": "array"
    },
    "testing_requirements": {
      "type": "array"
    },
    "security_considerations": {
      "type": "array"
    },
    "deliverables": {
      "type": "array"
    }
  },
  "required": [
    "sprint_number",
    "sprint_goal",
    "tasks",
    "definition_of_done"
  ],
  "additionalProperties": true
}
