JSON Schema definitions for all pipeline handover contracts including issue analysis, research, enhancement, and sync flows. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
31 lines
686 B
JSON
31 lines
686 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "Smoke Test Analysis",
|
|
"type": "object",
|
|
"required": [
|
|
"summary",
|
|
"files_examined",
|
|
"recommendation"
|
|
],
|
|
"properties": {
|
|
"summary": {
|
|
"type": "string",
|
|
"minLength": 10,
|
|
"description": "Brief summary of the analysis"
|
|
},
|
|
"files_examined": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
},
|
|
"minItems": 1,
|
|
"description": "List of files that were examined"
|
|
},
|
|
"recommendation": {
|
|
"type": "string",
|
|
"minLength": 10,
|
|
"description": "Recommendation based on analysis"
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
} |