-
Notifications
You must be signed in to change notification settings - Fork 4
/
harness.defaults.json
122 lines (114 loc) · 2.47 KB
/
harness.defaults.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"coreVersion": "3.10.3",
"user": "chw_id",
"subject": "patient_id",
"ownedBySubject": true,
"docs": [
{
"_id": "chw_id",
"name": "CHW",
"date_of_birth": "1971-03-10",
"phone": "+17782473214",
"reported_date": 1550559625153,
"type": "person",
"parent": {
"_id": "chw_area_id",
"parent": {
"_id": "branch_id"
}
}
},
{
"_id": "patient_id",
"type": "person",
"contact_type": "person",
"name": "Patient Name",
"role": "patient",
"date_of_birth": "2017-07-09",
"sex": "female",
"reported_date": 928195200000,
"patient_id": "patient_id",
"art_id": "ART 000",
"art_start_date": "01-01-2019",
"parent": {
"_id": "family_id",
"parent": {
"_id": "chw_area_id",
"parent": {
"_id": "schw_region_id",
"parent": {
"_id": "site_id"
}
}
}
}
},
{
"_id": "patient_id2",
"type": "person",
"contact_type": "person",
"name": "Patient Name",
"role": "patient",
"date_of_birth": "2000-07-09",
"sex": "female",
"reported_date": 928195200000
},
{
"_id": "family_id",
"type": "contact",
"contact_type": "household",
"name": "Test Family Contact",
"reported_date": 1546306973000,
"date_of_birth": "1990-07-09",
"parent": {
"_id": "chw_area_id",
"parent": {
"_id": "schw_region_id",
"parent": {
"_id": "site_id"
}
}
}
},
{
"_id": "chw_area_id",
"type": "health_center",
"contact_type": "chw_area",
"name": "CHW Area",
"parent": {
"_id": "schw_region_id",
"parent": {
"_id": "site_id"
}
},
"contact": {
"_id": "chw_area_contact_id"
}
},
{
"_id": "schw_id",
"name": "SCHW",
"date_of_birth": "1971-03-10",
"phone": "+17782473214",
"reported_date": 1550559625153,
"type": "contact",
"contact_type": "schw",
"parent": {
"_id": "schw_region_id",
"parent": {
"_id": "site_id"
},
"contact": {
"_id": "chw_area_contact_id"
}
}
},
{
"_id": "schw_region_id",
"contact_type": "schw_region",
"parent": {
"_id": "site_id"
}
}
]
}