{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DocumentQuality",
  "type": "object",
  "required": ["document_id", "doc_id", "quality", "processed_at"],
  "properties": {
    "document_id": {"type": "string"},
    "doc_id": {"type": "string"},
    "ocr_used": {"type": "boolean"},
    "image_quality": {"type": "string"},
    "needs_rotation": {"type": "boolean"},
    "issues": {"type": "array", "items": {"type": "string"}},
    "needs_manual_review": {"type": "boolean"},
    "verified": {"type": "boolean"},
    "quality": {
      "type": "object",
      "properties": {
        "readable_text_detected": {"type": "boolean"},
        "confidence": {"type": "number"},
        "recommended_next_steps": {"type": "array", "items": {"type": "string"}}
      }
    },
    "processed_at": {"type": "string"}
  }
}
