{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DocumentManifest",
  "type": "object",
  "required": ["document_id", "applicant_id", "document_type", "category", "subcategory", "status", "created_at"],
  "properties": {
    "document_id": {"type": "string"},
    "doc_id": {"type": "string"},
    "applicant_id": {"type": "string"},
    "document_type": {"type": "string"},
    "category": {"type": "string"},
    "subcategory": {"type": "string"},
    "storage_path": {"type": "string"},
    "source": {"type": "string"},
    "stored_original": {"type": "string"},
    "filename": {"type": "string"},
    "original_filename": {"type": "string"},
    "extension": {"type": "string"},
    "bytes": {"type": "number"},
    "sha1": {"type": "string"},
    "files": {"type": "object"},
    "status": {"type": "string"},
    "created_at": {"type": "string"},
    "updated_at": {"type": "string"},
    "processed_at": {"type": "string"}
  }
}
