17 lines
625 B
JSON
17 lines
625 B
JSON
{
|
|||
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||
|
|
"title": "Prospect Platform Phase 16 benchmark report",
|
||
|
|
"type": "object",
|
||
|
|
"required": ["benchmark", "version", "offline", "limitations", "acceptance_thresholds", "results", "checks", "passed"],
|
||
|
|
"properties": {
|
||
|
|
"benchmark": {"const": "phase16"},
|
||
|
|
"version": {"type": "integer", "const": 1},
|
||
|
|
"offline": {"const": true},
|
||
|
|
"limitations": {"type": "array", "items": {"type": "string"}},
|
||
|
|
"acceptance_thresholds": {"type": "object"},
|
||
|
|
"results": {"type": "object"},
|
||
|
|
"checks": {"type": "object"},
|
||
|
|
"passed": {"type": "boolean"}
|
||
|
|
}
|
||
|
|
}
|