{ "type": "object", "additionalProperties": false, "required": [ "category", "confidence", "summary", "reasoning", "reply", "code_paths", "code_findings" ], "properties": { "category": { "type": "string", "enum": [ "bug_ready", "bug_needs_info", "feature_quick_win", "feature_defer", "already_available", "unclear", "other" ] }, "confidence": { "type": "number", "minimum": 0, "maximum": 1 }, "summary": { "type": "string", "minLength": 1, "maxLength": 1000 }, "reasoning": { "type": "string", "minLength": 1, "maxLength": 2000 }, "reply": { "type": "string", "minLength": 1, "maxLength": 3000 }, "code_paths": { "type": "array", "minItems": 1, "items": { "type": "string", "minLength": 1 } }, "code_findings": { "type": "string", "minLength": 40, "maxLength": 4000 }, "label_corrections": { "type": "array", "items": { "type": "string" }, "maxItems": 10 } } }