Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
devportal-offline / build-offline (push) Has been cancelled
- Introduced `ui_bench_driver.mjs` to read scenarios and fixture manifest, generating a deterministic run plan. - Created `ui_bench_plan.md` outlining the purpose, scope, and next steps for the benchmark. - Added `ui_bench_scenarios.json` containing various scenarios for graph UI interactions. - Implemented tests for CLI commands, ensuring bundle verification and telemetry defaults. - Developed schemas for orchestrator components, including replay manifests and event envelopes. - Added mock API for risk management, including listing and statistics functionalities. - Implemented models for risk profiles and query options to support the new API.
33 lines
1013 B
JSON
33 lines
1013 B
JSON
{
|
|
"$id": "https://stella-ops.org/schemas/heuristics.schema.json",
|
|
"type": "object",
|
|
"required": ["version", "updatedAt", "heuristics", "signing"],
|
|
"properties": {
|
|
"version": {"type": "string"},
|
|
"updatedAt": {"type": "string", "format": "date-time"},
|
|
"heuristics": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"required": ["id", "band", "inputs", "formula", "normalization"],
|
|
"properties": {
|
|
"id": {"type": "string"},
|
|
"band": {"enum": ["gold", "silver", "bronze"]},
|
|
"inputs": {"type": "array", "items": {"type": "string"}},
|
|
"formula": {"type": "string"},
|
|
"normalization": {"type": "string"},
|
|
"evidence": {"type": "array", "items": {"type": "string"}}
|
|
}
|
|
}
|
|
},
|
|
"signing": {
|
|
"type": "object",
|
|
"required": ["predicate", "dsse_required"],
|
|
"properties": {
|
|
"predicate": {"type": "string"},
|
|
"dsse_required": {"type": "boolean"}
|
|
}
|
|
}
|
|
}
|
|
}
|