This commit is contained in:
StellaOps Bot
2025-12-13 02:22:15 +02:00
parent 564df71bfb
commit 999e26a48e
395 changed files with 25045 additions and 2224 deletions

View File

@@ -0,0 +1,34 @@
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "stellaops.reachability.ground-truth.schema.json",
"title": "StellaOps Reachability Ground Truth (public samples)",
"type": "object",
"required": ["schema_version", "case_id", "variant", "paths"],
"properties": {
"schema_version": {
"type": "string",
"const": "reachbench.reachgraph.truth/v1"
},
"case_id": {
"type": "string",
"minLength": 1
},
"variant": {
"type": "string",
"enum": ["reachable", "unreachable"]
},
"paths": {
"type": "array",
"items": {
"type": "array",
"minItems": 1,
"items": {
"type": "string",
"minLength": 1
}
}
}
},
"additionalProperties": true
}