{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ClarityOps Phase 2 Output", "type": "object", "required": ["prioritization", "capacity", "cost", "clinical_benefits", "recommendations", "provenance"], "properties": { "prioritization": { "type": "object", "required": ["groups_prioritized", "rationale"], "properties": { "groups_prioritized": { "type": "array", "items": { "type": "string" }, "minItems": 1 }, "rationale": { "type": "string" } } }, "capacity": { "type": "object", "required": ["formula_used", "total_clients"], "properties": { "formula_used": { "type": "string" }, "total_clients": { "type": "integer", "minimum": 0 } } }, "cost": { "type": "object", "required": ["startup_per_client", "ongoing_per_client", "total_per_client", "total_for_n", "benchmark_comparison"], "properties": { "startup_per_client": { "type": "number", "minimum": 0 }, "ongoing_per_client": { "type": "number", "minimum": 0 }, "total_per_client": { "type": "number", "minimum": 0 }, "total_for_n": { "type": "number", "minimum": 0 }, "benchmark_comparison": { "type": "string" } } }, "clinical_benefits": { "type": "object", "required": ["diabetes_group", "non_diabetes_group"], "properties": { "diabetes_group": { "type": "string" }, "non_diabetes_group": { "type": "string" } } }, "recommendations": { "type": "array", "items": { "type": "string" }, "minItems": 3, "maxItems": 3 }, "provenance": { "type": "object", "additionalProperties": true } }, "additionalProperties": false }