30 lines
654 B
Markdown
30 lines
654 B
Markdown
# 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
|
|
```
|