Files
brain/tools/subagent-output-schema.json
T

15 lines
449 B
JSON

{
"schema_version": 1,
"required_for_test_claims": {
"type": "object",
"properties": {
"tests_run": { "type": "integer" },
"tests_passed": { "type": "integer" },
"tests_failed": { "type": "integer" },
"tests_skipped": { "type": "integer" },
"raw_test_runner_output": { "type": "string", "minLength": 100 }
},
"required": ["tests_run", "tests_passed", "tests_failed", "raw_test_runner_output"]
}
}