{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Cognivirus Evidence Card",
  "type": "object",
  "required": [
    "claim",
    "evidence_level",
    "source",
    "publication_date",
    "authors_or_institution",
    "system_tested",
    "limitations",
    "does_show",
    "does_not_show",
    "reviewed_utc"
  ],
  "properties": {
    "claim": {
      "type": "string"
    },
    "evidence_level": {
      "enum": [
        "Demonstrated",
        "Experimentally observed",
        "Emerging evidence",
        "Architectural inference",
        "Open research question",
        "Speculative scenario"
      ]
    },
    "source": {
      "type": "string"
    },
    "publication_date": {
      "type": "string"
    },
    "authors_or_institution": {
      "type": "string"
    },
    "system_tested": {
      "type": "string"
    },
    "limitations": {
      "type": "string"
    },
    "does_show": {
      "type": "string"
    },
    "does_not_show": {
      "type": "string"
    },
    "reviewed_utc": {
      "type": "string",
      "format": "date-time"
    }
  },
  "additionalProperties": false
}
