gspc-distribution-integrity / input-schema.json
Nicholastempleman's picture
UNMEASURED signed coverage + input-schema + skeleton + pinned eval.yaml. Cite GET /api/gspc. Not a grade. No composite.
5c6113d verified
Raw
History Blame Contribute Delete
465 Bytes
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "GSPC FIN coverage input",
"type": "object",
"required": [
"axis",
"status",
"unmeasured"
],
"properties": {
"axis": {
"type": "string"
},
"status": {
"const": "UNMEASURED"
},
"unmeasured": {
"type": "array",
"items": {
"type": "string"
}
},
"n": {
"type": "integer",
"maximum": 0
}
}
}