APEX by Tap Innovations ← Back to Trust Center
Framework

AI Governance Framework

Consulting deliverable template  |  Version 1.0  |  Tap Innovations LLC

✦ Framework Origin
This framework is based on the operational governance model used by Tap Innovations LLC to run the APEX platform in production. It is not theoretical — it governs a live, multi-tenant AI system serving AWS partners today. It is adapted per engagement to the customer's organizational context and regulatory requirements.

For a technical reference implementation of these controls, see the APEX Trust Layer. For an example of how these governance policies operate in production, see the APEX Governance Document.

Fields marked [CUSTOMIZE] are completed during the engagement with the customer's own roles, retention periods, models, and regulatory obligations.

Contents

  1. Executive Summary
  2. Pillar 1 — Data Protection & Privacy
  3. Pillar 2 — Model & Output Governance
  4. Pillar 3 — Access Control & Accountability
  5. Pillar 4 — Monitoring & Incident Response
  6. Risk Assessment Matrix
  7. Roles & Responsibilities
  8. Regulatory Alignment Checklist
  9. Implementation Roadmap
  10. Document Control

Executive Summary

The adopting organization uses this AI Governance Framework to ensure responsible, secure, and compliant use of artificial intelligence across the business. The framework establishes the policies, controls, roles, and review processes that govern how AI systems are deployed, monitored, and improved.

Pillar 1 — Data Protection & Privacy

Principle

Know what data touches AI systems, protect it appropriately, and be explicit about what is and isn't allowed.

Data Classification

Before any data is used as input to an AI system, it must be classified according to the following table:

ClassificationDescriptionAI Input Allowed?Examples
PublicInformation intended for public consumptionYesMarketing materials, public documentation
InternalBusiness information not intended for public releaseYes, with access controlsInternal reports, meeting notes, project plans
ConfidentialSensitive business data requiring protectionYes, with HITL review on outputsCustomer data, financial projections, deal details
RestrictedHighly sensitive data with regulatory or legal constraintsNo — prohibited as AI inputPII subject to HIPAA/GDPR, payment card data, credentials

Adjust classifications to match the organization's existing data classification policy. Add industry-specific categories as needed.

Retention and Deletion

  • AI conversation data: retention period
  • AI-generated documents: retention period
  • Audit trail (metadata): retention period
  • All retention periods must comply with applicable regulations — HIPAA, SOX, GDPR, etc.

Encryption Requirements

  • All data at rest must be encrypted (AES-256 or KMS-managed keys at minimum)
  • All data in transit must use TLS 1.2 or higher
  • Encryption keys must be managed through a dedicated key management service — not embedded in application code or configuration files

Monday Morning

Before feeding data to an AI system, check the classification table. If it's in the Restricted column, stop. If it's Confidential, the output requires human review before it leaves the building.

APEX proof point: See Trust Layer §3–5 for a reference implementation — per-tenant KMS keys, zero conversation content logging, data classification enforced at the infrastructure level.

Pillar 2 — Model & Output Governance

Principle

Know which AI models are in use, validate what goes in, and review what comes out before it reaches customers.

Approved AI Models and Services

Only explicitly authorized AI models and services may be used:

Model/ServiceProviderApproved Use CasesOwner
modelprovideruse casesowner
modelprovideruse casesowner

Any AI model or service not on this list is prohibited. This includes free-tier AI tools, browser extensions with AI features, and personal accounts on AI platforms. Shadow AI — unauthorized use of AI tools — is a governance violation.

Input Validation

All AI systems must implement input validation before processing user requests:

  • Prompt injection detection (obfuscation, encoding attacks, directive injection)
  • Data classification enforcement (Restricted data must be rejected before reaching the model)
  • Input length and format validation

Human Review Requirements

Output TypeReview Required?Reviewer
Internal-use documentsNoN/A
Customer-facing documentsYes — before deliveryrole/title
Financial or legal outputsYes — before deliveryrole/title + Legal
Code generated by AIYes — standard code reviewEngineering lead
Automated decisions affecting customersYes — before executionrole/title

Guardrails

AI systems must have scope boundaries that define what the AI is and isn't allowed to do:

  • Topics the AI should refuse to engage with: defined per engagement
  • Actions the AI should never take autonomously: defined per engagement
  • Output formats that require human review: defined per engagement

Monday Morning

AI-generated customer-facing content goes through the review queue before it leaves the building. No exceptions. If it touches a customer, a human approved it.

APEX proof point: See Trust Layer §7 and §9 — prompt injection detection, guardrail refusal handling, and mandatory HITL review on all customer-facing outputs with self-approval prevention.

Pillar 3 — Access Control & Accountability

Principle

Every AI action traces back to a person. If you can't point to who approved it, it didn't get approved.

Role-Based Access

AI system access is granted based on role, not by default:

RoleAI System AccessCan Approve Outputs?
roleFull access (admin)Yes
roleCreate and submitNo — submits for review
roleReview and approveYes
roleRead-onlyNo

Map to the organization's existing role structure. Every role should have clear AI access boundaries.

Separation of Duties

  • The person who creates AI-generated content cannot approve it for external use
  • The person who configures AI system guardrails cannot be the sole person who monitors them
  • Administrative access to AI systems requires multi-factor authentication

Audit Trail Requirements

EventWhat Is LoggedWhat Is NOT Logged
User requestUser ID, timestamp, session IDMessage content
AI responseToken count, model used, latencyResponse content
Review actionReviewer ID, decision, timestamp, commentsN/A
Configuration changeWho changed what, when, previous valueN/A

Audit logs must be retained for retention period and must be immutable (append-only, no deletion or modification).

Adjust logging requirements to match the organization's compliance obligations. Some regulations require content logging — if so, specify which data categories and retention periods.

Authentication

  • SSO/federation required for all AI system access — no local accounts
  • Multi-factor authentication required for administrative access
  • Session timeout: duration

Monday Morning

If you can't point to who approved it, it didn't get approved. Every AI output that reaches a customer has a name attached to the approval.

APEX proof point: See Trust Layer §6 and Governance §4 — 9 RBAC roles enforced server-side, SCIM 2.0 automated provisioning, self-approval prevention on all workflows.

Pillar 4 — Monitoring, Incident Response & Continuous Improvement

Principle

Watch the systems, respond to failures, learn from them, and get better. Not annually — continuously.

What Gets Monitored

MetricThresholdAction
AI error ratethresholdAlert + investigate
Response latencythresholdAlert + capacity review
Token consumptionthresholdCost review
Authentication failuresthresholdSecurity investigation
Guardrail triggersAny increase in rateReview guardrail effectiveness
User-reported issuesAllTriage within hours

AI-Specific Incident Types

Standard incident response procedures apply, plus these AI-specific scenarios:

Incident TypeDescriptionResponse
HallucinationAI generates factually incorrect output that reaches a customerRecall output, notify affected customer, review guardrails
Data leakageAI reveals data from one user/tenant to anotherP0 — immediate containment, customer notification within 72 hours
Prompt injectionAttacker manipulates AI behavior through crafted inputBlock input pattern, review detection rules, assess if data was exposed
Model degradationAI quality drops significantly (new model version, drift)Roll back to previous model version, investigate root cause

Feedback Loops

Users must have a clear, low-friction way to report AI issues:

  • In-app feedback mechanism (not a form — conversational)
  • Issues triage into the development pipeline automatically
  • Reporters receive acknowledgment and resolution status

Specify the feedback mechanism. APEX uses a conversational AI-powered issue reporter that creates GitHub issues automatically.

Governance Review Cadence

ReviewFrequencyParticipantsDeliverables
AI incident reviewAfter every P0/P1AI System Owner, Platform AdminRoot cause analysis, corrective actions
Governance health checkQuarterlyExecutive Sponsor, AI System Owner, Data StewardDashboard review, policy updates, risk assessment update
Model approval reviewWhen model changes are proposedAI System Owner, ReviewerUpdated approved model list, test results
Annual governance auditAnnuallyAll RACI rolesFull framework review, regulatory alignment update

Monday Morning

Check the dashboard. If something's red, follow the runbook. If something's been yellow for more than a week, escalate.

APEX proof point: See Governance §6–7 — CloudWatch alarms, WAF metrics, structured logging, P0–P3 severity levels, and a closed-loop feedback system where user-reported issues flow directly into the development pipeline.

Risk Assessment Matrix

Classify every AI use case by risk tier. Higher risk requires more controls.

Use CaseRisk TierRequired ControlsApproval AuthorityReview Cadence
Internal knowledge searchLowAccess control, audit loggingDepartment managerAnnual
Internal document draftingLowAccess control, output reviewDepartment managerAnnual
Customer-facing chat / assistantHighAll Pillar 1–4 controls, HITL reviewVP + AI System OwnerQuarterly
Document generation (internal)MediumAccess control, output review, auditDepartment managerSemi-annual
Document generation (external)HighAll controls, HITL review, legal reviewVP + LegalQuarterly
Code assistance (internal)MediumAccess control, code review processEngineering leadSemi-annual
Automated decisions affecting customersHighAll controls, HITL review, explainabilityVP + Legal + AI System OwnerQuarterly

Add the organization's specific AI use cases. Every AI system in production or planned should appear in this matrix.

Roles & Responsibilities

These are not committee memberships. These are specific people with specific accountability.

Role Definitions

  • AI System Owner — Accountable for a specific AI deployment. Owns the risk assessment for that system, ensures all required controls are implemented and functioning, and reports status to the Executive Sponsor.
  • Data Steward — Classifies data, approves or denies data sources for AI use, and reviews data handling practices. Has authority to block an AI system from accessing a data source.
  • Reviewer — Approves AI outputs before external use. Cannot be the same person who created the output. Must understand the domain well enough to catch errors.
  • Platform Administrator — Manages access controls, monitors system health, handles incidents, and maintains the technical infrastructure. First responder for AI-specific incidents.
  • Executive Sponsor — Accountable to the board for AI governance. Reviews governance reports quarterly. Has authority to approve or deny new AI use cases and to shut down existing ones.

Each role is assigned to a named individual with title during the engagement.

RACI Matrix

ActivityAI System OwnerData StewardReviewerPlatform AdminExec Sponsor
Data classificationCA/R—II
Model approvalA/RCCIA
HITL output reviewI—A/R—I
Incident responseRIIA/RI
Access control managementC——A/RI
Governance reviewA/RRRRA
Policy updatesRRCCA
Regulatory alignmentRR—IA

A = Accountable  |  R = Responsible  |  C = Consulted  |  I = Informed

Regulatory Alignment Checklist

This table maps framework controls to applicable regulatory standards. Not all standards apply to every organization — check the columns relevant to the organization's regulatory obligations.

Framework ControlNIST AI RMFISO/IEC 42001EU AI Act
Data classification (Pillar 1)Map 1.1, 1.2A.6.2.4Art. 10 (data governance)
Encryption at rest and in transit (Pillar 1)Govern 1.5A.8.4Art. 15 (accuracy/robustness)
Model approval process (Pillar 2)Govern 1.1A.6.2.2Art. 9 (risk management)
Input validation (Pillar 2)Manage 2.2A.8.3Art. 15 (accuracy/robustness)
HITL review (Pillar 2)Govern 4.1A.6.2.6Art. 14 (human oversight)
Role-based access (Pillar 3)Govern 1.3A.6.2.3Art. 9 (risk management)
Audit trail (Pillar 3)Measure 2.1A.6.2.5Art. 12 (record-keeping)
Monitoring and alerting (Pillar 4)Measure 3.1A.9.3Art. 9 (risk management)
Incident response (Pillar 4)Manage 3.1A.8.2Art. 62 (reporting)
Governance review cadence (Pillar 4)Govern 5.1A.9.1, A.9.2Art. 9 (risk management)

A column is added for the organization's industry-specific regulations — HIPAA, SOX, PCI-DSS, FedRAMP, CMMC, etc.

Implementation Roadmap

Three phases. Each phase has specific deliverables — not vague objectives.

Phase 1 — Foundation (Month 1)

  • Complete data classification table (Pillar 1)
  • Define and publish approved AI model list (Pillar 2)
  • Implement role-based access controls for all AI systems (Pillar 3)
  • Set up basic monitoring and alerting (Pillar 4)
  • Assign all RACI roles with named individuals

Deliverables: Classification table signed off, model list published internally, access controls deployed, monitoring dashboard live, RACI matrix populated with names.

Phase 2 — Controls (Months 2–3)

  • Implement HITL review workflows for all High-risk use cases (Pillar 2)
  • Deploy audit trail and logging for all AI systems (Pillar 3)
  • Write incident response runbook for AI-specific failures (Pillar 4)
  • Complete risk assessment matrix for all current AI use cases
  • Implement user feedback mechanism for AI issues (Pillar 4)

Deliverables: Review workflow operational, audit trail capturing events, runbook published and tabletop-tested, risk matrix signed off by Executive Sponsor, feedback mechanism live.

Phase 3 — Maturity (Months 4–6)

  • Conduct first quarterly governance review meeting (Pillar 4)
  • Complete regulatory alignment checklist
  • Run first AI-specific incident response tabletop exercise
  • Document lessons learned and publish framework v1.1
  • Begin SOC 2 preparation (if applicable)

Deliverables: First governance review completed with documented outcomes, regulatory alignment checklist reviewed by legal, tabletop exercise report, framework v1.1 published with updates from first quarter of operation.

Timelines are adjusted based on the organization's current maturity level, team size, and urgency. Organizations with existing governance programs may compress Phase 1. Organizations starting from scratch may need to extend Phase 2.

Document Control

FieldValue
Version1.0
Last UpdatedDate
Framework OwnerName, Title
Review CadenceQuarterly minimum, or when significant changes to AI usage occur
Next Scheduled ReviewDate

Change Log

DateVersionChangeAuthor
Date1.0Initial framework adoptionAuthor

Want this framework adapted to your organization? privacy@discovertap.com
Tap Innovations LLC, Apopka, Florida, United States

APEX Pricing Trust Center Tap Innovations Privacy Policy Terms of Service Contact

© 2026 Tap Innovations LLC. All rights reserved.