{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Zeoel Team Change Request",
  "type": "object",
  "properties": {
    "requested_change": {
      "type": "string"
    },
    "reason": {
      "type": "string"
    },
    "business_value": {
      "type": "string"
    },
    "affected_modules": {
      "type": "array"
    },
    "impact_on_timeline": {
      "type": "string"
    },
    "impact_on_cost": {
      "type": "string"
    },
    "impact_on_architecture": {
      "type": "string"
    },
    "impact_on_testing": {
      "type": "string"
    },
    "security_impact": {
      "type": "string"
    },
    "approval_required": {
      "type": "boolean"
    },
    "status": {
      "type": "string"
    }
  },
  "required": [
    "requested_change",
    "approval_required",
    "status"
  ],
  "additionalProperties": true
}
