-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpatient-mapping-job-with-two-sources.json
49 lines (49 loc) · 1.22 KB
/
patient-mapping-job-with-two-sources.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
{
"name" : "patient-job-test",
"sourceSettings" : {
"patientSource" : {
"jsonClass" : "FileSystemSourceSettings",
"name" : "patient-test-data",
"sourceUri" : "http://test-data",
"dataFolderPath" : "./test-data",
"asStream" : false
},
"genderSource" : {
"jsonClass" : "FileSystemSourceSettings",
"name" : "patient-gender-test-data",
"sourceUri" : "http://test-data",
"dataFolderPath" : "./test-data-gender",
"asStream" : false
}
},
"sinkSettings" : {
"jsonClass" : "FhirRepositorySinkSettings",
"fhirRepoUrl" : "http://localhost:8081/fhir",
"returnMinimal" : true
},
"mappings" : [ {
"name": "patient-mapping-with-two-sources",
"mappingRef" : "http://patient-mapping-with-two-sources",
"sourceBinding" : {
"patient" : {
"jsonClass" : "FileSystemSource",
"path" : "patient-simple.csv",
"contentType" : "csv",
"options" : { },
"sourceRef": "patientSource"
},
"patientGender" : {
"jsonClass" : "FileSystemSource",
"path" : "patient-gender-simple.csv",
"contentType" : "csv",
"options" : { },
"sourceRef": "genderSource"
}
}
} ],
"dataProcessingSettings" : {
"saveErroneousRecords" : false,
"archiveMode" : "off"
},
"useFhirSinkAsIdentityService" : false
}