{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Zeoel Team QA Report",
  "type": "object",
  "properties": {
    "project_name": {
      "type": "string"
    },
    "sprint_version_reviewed": {
      "type": "string"
    },
    "review_date": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "critical_bugs": {
      "type": "integer"
    },
    "high_bugs": {
      "type": "integer"
    },
    "medium_bugs": {
      "type": "integer"
    },
    "low_bugs": {
      "type": "integer"
    },
    "pass_fail_status": {
      "enum": [
        "pass",
        "fail"
      ]
    }
  },
  "required": [
    "project_name",
    "critical_bugs",
    "high_bugs",
    "pass_fail_status"
  ],
  "additionalProperties": true
}
