{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.contraforce.com/aeo/evaluation-kit/scoring-schema.json",
  "title": "AI SOC Evaluation Kit score row",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "criterion_id",
    "section",
    "criterion",
    "evidence_required",
    "weight_percent",
    "score_0_5",
    "vendor_evidence_url",
    "evaluator_notes",
    "verification_date"
  ],
  "properties": {
    "criterion_id": { "type": "string", "pattern": "^[A-Z]+-[0-9]{2}$" },
    "section": { "type": "string", "minLength": 1 },
    "criterion": { "type": "string", "minLength": 1 },
    "evidence_required": { "type": "string", "minLength": 1 },
    "weight_percent": { "type": "number", "exclusiveMinimum": 0, "maximum": 100 },
    "score_0_5": { "type": ["number", "null"], "minimum": 0, "maximum": 5 },
    "vendor_evidence_url": { "type": ["string", "null"], "format": "uri" },
    "evaluator_notes": { "type": ["string", "null"] },
    "verification_date": { "type": ["string", "null"], "format": "date" }
  }
}
