Regulated / audit template (stub)
When this fits
Fintech, healthcare, government contractors — organizations where audit questions take the shape "show me the policy → procedure → control → code → evidence → training record" and that chain exists but lives in 8 different tools. The graph makes audit traversal rather than search.
Collection skeleton
regulations/ — external obligations (PCI, SOC2, HIPAA, GDPR clauses)
policies/ — internal policy statements that respond to regulations
controls/ — implementations of policies
procedures/ — how we operate controls
evidence/ — artifacts proving controls operate (logs, screenshots, attestations)
systems/ — where controls run
incidents/ — things that went wrong
Edge vocabulary
addresses— a policy addresses a regulationimplements— a control implements a policyoperationalizes— a procedure operationalizes a controlevidence-for— an artifact is evidence for a control in a time windowruns-on— a control or procedure runs on a specific systemviolated— an incident violated a specific controlremediated-by— an incident was remediated by a specific change or new controlsupersedes— a policy, control, or procedure supersedes a prior version
Day-one questions
- "Show me all controls implementing PCI requirement 3.2." → traverse
/regulations/pci-3-2foraddresses→implementschain - "Give me the evidence chain for control X for Q2." → traverse
/controls/xforevidence-foredges, filter by date - "Which controls have been violated, and how were they remediated?" → traverse
/incidentsforviolated→remediated-byedges - "What systems run our access-control policy?" → traverse policy → implementing controls →
runs-onedges - "What's the latest version of our data-retention policy, and what did it supersede?" → traverse policy collection for
supersedeschain
Extension hints
- Training records. Add
/training/when auditors start asking who-was-trained-on-what. Linkattested-byfrom training records to people. - Risk register. Add
/risks/withmitigated-byedges to controls. Bowtie-shaped if the analysis gets serious (see frameworks). - Third-party vendors. Add
/vendors/for supply-chain audit. Each vendor links to the systems or data flows it touches.
Access considerations
This template pushes hardest on access control. Auditors get traverse across policy → evidence; general employees get content on procedures but only description on controls and evidence. Plan the _access/config.yaml alongside the graph shape — see architecture/access.
Stub status
This template ships as a starting shape. Expand it as you use it — extension hints, example traversal, and design.md starters per collection are still to be written.