|
| 1 | +{ |
| 2 | + "$schema": "http://json-schema.org/draft-07/schema#", |
| 3 | + "title": "Local AI Scan Product Loop Readiness Report", |
| 4 | + "type": "object", |
| 5 | + "required": [ |
| 6 | + "report_id", |
| 7 | + "version", |
| 8 | + "timestamp", |
| 9 | + "overall_readiness_status", |
| 10 | + "local_demo_ready", |
| 11 | + "backend_execution_enabled", |
| 12 | + "live_services_enabled", |
| 13 | + "stages" |
| 14 | + ], |
| 15 | + "properties": { |
| 16 | + "report_id": { "type": "string" }, |
| 17 | + "version": { "type": "string" }, |
| 18 | + "timestamp": { "type": "string" }, |
| 19 | + "overall_readiness_status": { "type": "string", "enum": ["ready", "gaps_identified", "blocked"] }, |
| 20 | + "local_demo_ready": { "type": "boolean" }, |
| 21 | + "backend_execution_enabled": { "type": "boolean" }, |
| 22 | + "live_services_enabled": { "type": "boolean" }, |
| 23 | + "stages": { |
| 24 | + "type": "array", |
| 25 | + "items": { |
| 26 | + "type": "object", |
| 27 | + "required": ["stage_id", "stage_name", "status"], |
| 28 | + "properties": { |
| 29 | + "stage_id": { "type": "string" }, |
| 30 | + "stage_name": { "type": "string" }, |
| 31 | + "package_script": { "type": "string" }, |
| 32 | + "output_path": { "type": "string" }, |
| 33 | + "validation_script": { "type": "string" }, |
| 34 | + "status": { "type": "string", "enum": ["available", "missing", "blocked"] }, |
| 35 | + "safety_notes": { "type": "string" }, |
| 36 | + "product_value_summary": { "type": "string" } |
| 37 | + } |
| 38 | + } |
| 39 | + }, |
| 40 | + "open_gaps": { "type": "array", "items": { "type": "string" } }, |
| 41 | + "recommended_next_step": { "type": "string" } |
| 42 | + } |
| 43 | +} |
0 commit comments