{
  "protocolVersion": "1.0.0",
  "name": "OConnector Sovereign Gateway",
  "description": "Deterministic interdiction and non-repudiation tooling for AI agents.",
  "tools": [
    {
      "name": "interdict_intent",
      "description": "Intercepts and evaluates an autonomous AI agent intent through the 11-Gate Pipeline.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "agentId": {
            "type": "string",
            "description": "Cryptographic identifier of the calling agent (Ed25519)."
          },
          "action": {
            "type": "string",
            "description": "Target tool or system action to be executed."
          },
          "payload": {
            "type": "object",
            "description": "Parameters and payload passed to the action."
          }
        },
        "required": ["agentId", "action", "payload"]
      }
    },
    {
      "name": "verify_audit_seal",
      "description": "Verifies cryptographic proof and RFC 3161 timestamp of a committed action.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "transactionHash": {
            "type": "string",
            "description": "SHA-256 hash of the committed transaction."
          }
        },
        "required": ["transactionHash"]
      }
    },
    {
      "name": "schedule_briefing",
      "description": "Schedules an enterprise technical briefing or architecture PoC audit.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "description": "Corporate email of requesting officer."
          },
          "institution": {
            "type": "string",
            "description": "Enterprise, bank, or government agency name."
          },
          "context": {
            "type": "string",
            "description": "Security and compliance requirements."
          }
        },
        "required": ["email", "institution", "context"]
      }
    }
  ]
}
