-
Notifications
You must be signed in to change notification settings - Fork 1
/
data_extraction_config.json.default
42 lines (42 loc) · 1.18 KB
/
data_extraction_config.json.default
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
[
{
"name": "obs",
"query": "/Observation?code=http://loinc.org%7C33763-4,http://loinc.org%7C71425-3,http://loinc.org%7C33762-6,http://loinc.org%7C83107-3,http://loinc.org%7C83108-1,http://loinc.org%7C77622-9,http://loinc.org%7C77621-1&date=ge2019-01-01&date=le2022-12-31&_format=json",
"output_file_path": "extracted_resources",
"request_type": "GET",
"cohort_extraction": {
"cohort_id_field": "subject.reference",
"cohort_id_prefix": "Patient/"
}
},
{
"name": "pats",
"query": "/Patient",
"output_file_path": "extracted_resources",
"request_type": "GET",
"cohort_dependence": {
"chunk_size": 300,
"cohort_id_selection_field": "_id"
}
},
{
"name": "enc",
"query": "/Encounter?type=einrichtungskontakt",
"output_file_path": "extracted_resources",
"request_type": "GET",
"cohort_dependence": {
"chunk_size": 300,
"cohort_id_selection_field": "subject"
}
},
{
"name": "cond",
"query": "/Condition",
"output_file_path": "extracted_resources",
"request_type": "GET",
"cohort_dependence": {
"chunk_size": 100,
"cohort_id_selection_field": "subject"
}
}
]