File size: 1,135 Bytes
d5d6ba3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | {
"$id": "https://graphrarebench.org/schemas/evidence_bundle_public_v1.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": true,
"properties": {
"asset_inventory_version": {
"type": "string"
},
"case_base_hash": {
"type": "string"
},
"case_base_path": {
"const": "cases/graphrarebench_cases.jsonl"
},
"case_id": {
"type": "string"
},
"created_at": {
"type": "string"
},
"evidence_bundle_id": {
"type": "string"
},
"evidence_items": {
"items": {
"type": "object"
},
"type": "array"
},
"graph_path_alignment_ids": {
"items": {
"type": "string"
},
"type": "array"
},
"retrieval_run_id": {
"type": "string"
}
},
"required": [
"evidence_bundle_id",
"case_id",
"case_base_path",
"case_base_hash",
"retrieval_run_id",
"asset_inventory_version",
"evidence_items",
"graph_path_alignment_ids",
"created_at"
],
"title": "GraphRareBench public evidence bundle sidecar",
"type": "object"
}
|