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

37 lines
1.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://aas.example/schemas/v1/budget-manifest.schema.json",
"title": "AAS v1 generative and fuzz budgets",
"type": "object",
"required": ["schemaVersion", "status", "prng", "propertyAndGenerative", "parserAndMcpFuzz", "hardGate"],
"properties": {
"schemaVersion": { "const": 1 },
"status": { "enum": ["pendingIndependentSeeds", "frozen"] },
"prng": { "type": "object", "required": ["algorithm", "rootSeed", "derivation"] },
"propertyAndGenerative": { "$ref": "#/$defs/budget" },
"parserAndMcpFuzz": { "$ref": "#/$defs/budget" },
"hardGate": { "type": "object" }
},
"$defs": {
"budget": {
"type": "object",
"required": ["minimumExecutions", "strata"],
"properties": {
"minimumExecutions": { "type": "integer", "minimum": 1 },
"strata": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"required": ["id", "executions"],
"properties": {
"id": { "type": "string" },
"executions": { "type": "integer", "minimum": 1 }
}
}
}
}
}
}
}