Files
playbook/antigravity-awesome-skills/verification/aas-v1/schemas/benchmark-manifest.schema.json
T
2026-07-18 00:02:59 +00:00

31 lines
1011 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://aas.example/schemas/v1/benchmark-manifest.schema.json",
"title": "AAS v1 benchmark manifest",
"type": "object",
"required": ["schemaVersion", "benchmarkVersion", "status", "intents", "heldOut", "abstention", "labelsFrozen"],
"properties": {
"schemaVersion": { "const": 1 },
"benchmarkVersion": { "type": "string" },
"status": { "enum": ["structureOnly", "frozen"] },
"intents": {
"type": "array",
"minItems": 6,
"maxItems": 6,
"uniqueItems": true,
"items": { "type": "string" }
},
"heldOut": {
"type": "object",
"required": ["index", "casesPerIntent", "diversification"],
"properties": {
"index": { "type": "string" },
"casesPerIntent": { "const": 30 },
"diversification": { "const": "five-sub-intents-by-six-archetypes" }
}
},
"abstention": { "type": "object" },
"labelsFrozen": { "type": "boolean" }
}
}