{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://weverlabs.com/schemas/energyops-controlled-pilot-run-report.schema.json",
  "title": "EnergyOps Controlled Pilot Run Report",
  "type": "object",
  "required": [
    "run_report_id",
    "pilot_id",
    "tool",
    "summary",
    "readiness_status",
    "evidence_score",
    "proof_trail",
    "next_action"
  ],
  "properties": {
    "run_report_id": {
      "type": "string"
    },
    "pilot_id": {
      "type": "string"
    },
    "tool": {
      "const": "energyops"
    },
    "summary": {
      "type": "string"
    },
    "readiness_status": {
      "type": "string"
    },
    "evidence_score": {
      "type": "number"
    },
    "exceptions": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "proof_trail": {
      "type": "object"
    },
    "next_action": {
      "type": "string"
    }
  }
}
