{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://waxislab.pages.dev/schemas/ghostvc-report.schema.json",
  "title": "GhostVC W-Axis External Brain Report",
  "type": "object",
  "required": [
    "report_version",
    "company_summary",
    "founder_provided_facts",
    "submitter_provided_facts",
    "deck_extracted_facts",
    "w_axis_thesis",
    "surface_vs_hidden_value",
    "layer_map",
    "reality_bill",
    "cycle_stage",
    "scores",
    "evidence",
    "missing_evidence",
    "weak_signals",
    "kill_switches",
    "new_idea_branches",
    "high_leverage_questions",
    "ghostvc_read",
    "confidence",
    "disclaimers",
    "amy_addendum"
  ],
  "properties": {
    "report_version": {
      "type": "string"
    },
    "company_summary": {
      "type": "object"
    },
    "founder_provided_facts": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "submitter_provided_facts": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "deck_extracted_facts": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "w_axis_thesis": {
      "type": "object"
    },
    "surface_vs_hidden_value": {
      "type": "object"
    },
    "layer_map": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "reality_bill": {
      "type": "object"
    },
    "cycle_stage": {
      "type": "object"
    },
    "scores": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "required": [
          "score",
          "confidence",
          "evidence",
          "missing_proof",
          "short_interpretation"
        ],
        "properties": {
          "score": {
            "type": "number",
            "minimum": 0,
            "maximum": 5
          },
          "confidence": {
            "type": "string",
            "enum": [
              "Low",
              "Medium",
              "High"
            ]
          },
          "evidence": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "missing_proof": {
            "type": "array",
            "items": {
              "type": "string"
            }
          },
          "short_interpretation": {
            "type": "string"
          }
        }
      }
    },
    "evidence": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "missing_evidence": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "weak_signals": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "kill_switches": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "new_idea_branches": {
      "type": "array",
      "items": {
        "type": "object"
      }
    },
    "high_leverage_questions": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "ghostvc_read": {
      "type": "object"
    },
    "confidence": {
      "type": "object"
    },
    "disclaimers": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "amy_addendum": {
      "type": [
        "object",
        "null"
      ]
    }
  }
}
