Derived projections, reports, and graph exports for SSOT.
Project description
🔷 ssot-views
Derived reports and graph projections for SSOT registries.
ssot-views provides reusable derived projections for SSOT registries.
These outputs are non-canonical views built from registry data. The registry JSON remains the source of truth; this package focuses on reports and graph exports derived from that source.
What this package owns
- validation and certification report builders
- summary projections
- graph export builders for JSON and DOT output
When to use this package
Use ssot-views when you want:
- reusable Python functions for building SSOT reports
- graph export payloads or DOT output outside the CLI
- a small library dedicated to derived, read-oriented views
Use another package when you want:
- ssot-registry for core runtime APIs and mutation/validation workflows
- ssot-cli for command-line rendering and file output
- ssot-contracts for packaged schemas and templates
- ssot-tui for interactive terminal browsing
- ssot-codegen for contract metadata regeneration
Install
python -m pip install ssot-views
For local development from this repository:
python -m pip install -e pkgs/ssot-views
Public API
The top-level package currently exports:
build_validation_reportbuild_certification_reportbuild_summarybuild_graph_jsonbuild_graph_dot
Programmatic usage
Build a summary projection:
from ssot_views import build_summary
summary = build_summary(registry)
print(summary)
Build validation and certification reports:
from ssot_views import build_certification_report, build_validation_report
validation = build_validation_report(
registry,
".ssot/registry.json",
failures=[],
warnings=[],
)
certification = build_certification_report(
registry,
".ssot/registry.json",
release_report={"passed": True, "boundary": {"id": "bnd:demo", "profile_ids": [], "feature_ids": []}},
)
Build graph exports:
from ssot_views import build_graph_dot, build_graph_json
graph_payload = build_graph_json(registry)
dot_text = build_graph_dot(registry)
Canonical vs derived outputs
- Canonical:
.ssot/registry.json - Derived: reports, summaries, graph exports, and similar projections
This distinction matters for workflow design: views are meant to be regenerated from canonical data, not edited as the source of truth.
Package relationships
- Package type: derived-view library
- Depends on: ssot-contracts
- Consumed by: ssot-codegen, library users, and any tooling that needs reusable reports or graph exports
If you are building reporting, analysis, or export tooling around SSOT registries, this package is the appropriate reusable layer.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ssot_views-0.2.8.tar.gz.
File metadata
- Download URL: ssot_views-0.2.8.tar.gz
- Upload date:
- Size: 6.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
77397bfe7f2ee95f5e55b9188f1ea5445864f19f63e1b637a1b4a0bc3eebb8da
|
|
| MD5 |
124d2b1d93aaf3b543161f5755c5ab21
|
|
| BLAKE2b-256 |
77169aa89ef514ba2b30c1f8e6dae024c39d2b650c23ccc738436d6a8701b9ae
|
File details
Details for the file ssot_views-0.2.8-py3-none-any.whl.
File metadata
- Download URL: ssot_views-0.2.8-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ff0392fba3c7c4d6853c0bf42fde95118572b82a66ce5766523fc17eece3d50d
|
|
| MD5 |
b4f821c3fd198ebd0547ac30c29dff84
|
|
| BLAKE2b-256 |
869892034fd60e64a0fa4b0d880f195f3ded515ddd1414cbcdfc073ef98fa4f3
|