generated from coulomb/repo-seed
individual run evidence, retained summaries, and trend comparison
This commit is contained in:
@@ -398,7 +398,8 @@ Builds human and machine-readable outputs:
|
||||
### Retention Index
|
||||
|
||||
Keeps compact summaries over time while allowing raw artifact retention to be
|
||||
bounded by policy.
|
||||
bounded by policy. The first implementation writes `retention-summary.json` for
|
||||
each run and can build a trend summary grouped by target and assessment profile.
|
||||
|
||||
## Extension Archetypes
|
||||
|
||||
|
||||
20
docs/schemas/trend-summary.schema.json
Normal file
20
docs/schemas/trend-summary.schema.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"title": "Guide Board Trend Summary",
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"required": [
|
||||
"id",
|
||||
"created_at",
|
||||
"runs_dir",
|
||||
"run_count",
|
||||
"groups"
|
||||
],
|
||||
"properties": {
|
||||
"id": { "type": "string" },
|
||||
"created_at": { "type": "string" },
|
||||
"runs_dir": { "type": "string" },
|
||||
"run_count": { "type": "integer" },
|
||||
"groups": { "type": "array", "items": { "type": "object" } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user