{
  "$id": "https://targetspace.ai/platform/schemas/certification-report.schema.json",
  "title": "CertificationStyleSummary",
  "type": "object",
  "description": "Summary styled like a certification report. Prototype disclaimer: no certification marks exist; this summarizes gate outcomes only.",
  "required": [
    "run_id",
    "submitter",
    "level",
    "overall",
    "gates",
    "caveats"
  ],
  "properties": {
    "run_id": {
      "type": "string",
      "pattern": "^[A-Za-z0-9._-]{3,64}$"
    },
    "submitter": {
      "type": "string"
    },
    "level": {
      "enum": [
        "core",
        "controlled",
        "full"
      ]
    },
    "overall": {
      "enum": [
        "pass",
        "fail",
        "needs-review"
      ]
    },
    "gates": {
      "type": "object"
    },
    "caveats": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "generated_at": {
      "type": "string",
      "format": "date-time"
    }
  }
}
