File size: 1,778 Bytes
05b73f1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e2dfc2b
05b73f1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Clarity Ops Phase 2 Output",
  "type": "object",
  "required": ["prioritization", "capacity", "cost", "clinical_benefits", "recommendations"],
  "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
}