Files
git.stella-ops.org/docs/benchmarks/signals/reachability-schema.json
StellaOps Bot efaf3cb789
Some checks failed
Signals CI & Image / signals-ci (push) Has been cancelled
Signals Reachability Scoring & Events / reachability-smoke (push) Has been cancelled
Signals Reachability Scoring & Events / sign-and-upload (push) Has been cancelled
Manifest Integrity / Validate Schema Integrity (push) Has been cancelled
Manifest Integrity / Validate Contract Documents (push) Has been cancelled
Manifest Integrity / Validate Pack Fixtures (push) Has been cancelled
Manifest Integrity / Audit SHA256SUMS Files (push) Has been cancelled
Manifest Integrity / Verify Merkle Roots (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
up
2025-12-12 09:35:37 +02:00

33 lines
937 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "StellaOps Reachability Bench Schema",
"description": "Schema for synthetic reachability bench callgraph/runtime fixtures.",
"type": "object",
"oneOf": [
{
"title": "Callgraph",
"required": ["function", "calls", "weight"],
"properties": {
"function": { "type": "string" },
"calls": {
"type": "array",
"items": { "type": "string" },
"minItems": 0
},
"weight": { "type": "integer", "minimum": 0 }
},
"additionalProperties": false
},
{
"title": "RuntimeTrace",
"required": ["function", "count", "timestamp"],
"properties": {
"function": { "type": "string" },
"count": { "type": "integer", "minimum": 0 },
"timestamp": { "type": "string", "format": "date-time" }
},
"additionalProperties": false
}
]
}