docs(report): add section 5.3 draft assets

This commit is contained in:
2026-04-13 19:30:00 +01:00
parent 41fd7bb085
commit bd61735579
12 changed files with 1652 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
# 5.3.10 Operational Documentation and Support Assets
This diagram maps the implementation code to the support assets used to inspect, document, and validate the system.
```mermaid
flowchart TD
Runtime[Runtime System]
APIs[API Routes]
Docs[OpenAPI Docs]
Sim[Simulator Pages]
Workers[Background Workers]
Validation[Validation and rollout docs]
Admin[Admin / Ops routes]
Runtime --> APIs
Runtime --> Workers
Runtime --> Admin
APIs --> Docs
APIs --> Sim
Runtime --> Validation
subgraph Support["Support layer"]
Docs
Sim
Workers
Validation
Admin
end
```