35 lines
794 B
JSON
35 lines
794 B
JSON
{
|
|
"$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
|
|
}
|
|
|