{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://governedai.ai/schemas/institutional_access_request.schema.json",
  "title": "Institutional Access Request",
  "description": "The eight-field schema for an institutional access request. Submitted via mailto only; no marketing capture. Counsel routes every complete request.",
  "type": "object",
  "required": [
    "organization",
    "role",
    "jurisdiction",
    "use_case",
    "requested_tier",
    "nda_status",
    "technical_evaluator",
    "counsel_contact"
  ],
  "additionalProperties": false,
  "properties": {
    "organization": {
      "type": "string",
      "minLength": 2,
      "description": "Legal entity name and country of incorporation"
    },
    "role": {
      "type": "string",
      "minLength": 2,
      "description": "Requester's role at the organization, including reporting line"
    },
    "jurisdiction": {
      "type": "string",
      "minLength": 2,
      "description": "Primary regulatory jurisdiction (e.g. US-SEC, EU-AIAct, UK-FCA, US-CA)"
    },
    "use_case": {
      "type": "string",
      "minLength": 10,
      "description": "What specific governed-AI artifact the request is scoped to. Open-ended discovery requests are not accepted."
    },
    "requested_tier": {
      "type": "string",
      "enum": ["TIER_1_PARTNER", "TIER_2_NDA", "TIER_3_INTERNAL_ONLY"],
      "description": "The disclosure tier you are requesting access to. TIER_4_PATENT_SENSITIVE is never granted via this path."
    },
    "nda_status": {
      "type": "string",
      "enum": ["none", "requested", "executed", "declined"],
      "description": "Current NDA status between requester organization and OptimaX Solutions LLC"
    },
    "technical_evaluator": {
      "type": "object",
      "required": ["name", "contact"],
      "properties": {
        "name": { "type": "string", "minLength": 2 },
        "contact": { "type": "string", "minLength": 5 },
        "title": { "type": "string" }
      },
      "additionalProperties": false,
      "description": "Named engineer or evaluator who will engage the diligence room. Diligence is scoped to the named individual, not the organization."
    },
    "counsel_contact": {
      "type": "object",
      "required": ["name", "contact"],
      "properties": {
        "name": { "type": "string", "minLength": 2 },
        "contact": { "type": "string", "minLength": 5 },
        "firm": { "type": "string" }
      },
      "additionalProperties": false,
      "description": "Retained counsel of record on the requester side. Counsel-to-counsel routing is the path for Tier 1+ engagements."
    }
  },
  "examples": [
    {
      "organization": "Example Bank N.A. (US)",
      "role": "Chief Information Security Officer, reporting to the CRO",
      "jurisdiction": "US-OCC, US-FRB, US-SEC",
      "use_case": "Engineering chain-of-custody evidence for AI-assisted code in our model-risk pipeline, scoped to SR 11-7 obligations.",
      "requested_tier": "TIER_1_PARTNER",
      "nda_status": "none",
      "technical_evaluator": {
        "name": "Jane Engineer",
        "contact": "jane.engineer@example.com",
        "title": "VP, Model Risk Engineering"
      },
      "counsel_contact": {
        "name": "John Counsel",
        "contact": "jcounsel@examplelaw.com",
        "firm": "Example Law LLP"
      }
    }
  ]
}
