-
Notifications
You must be signed in to change notification settings - Fork 0
/
exceptions.ts
34 lines (33 loc) · 1.43 KB
/
exceptions.ts
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
// These are examples to skip in the tests, because the are invalid in the spec
export default {
r2: [
'patient-example.canonical.json', // random NULL
'patient-example.json', // random NULL
'relatedperson-example.canonical.json', // random NULL
'relatedperson-example.json', // random NULL
],
r3: [],
r4b: [
'examplescenario-questionnaire.canonical.json', // missing linkId
'examplescenario-questionnaire.json', // missing linkId
'activitydefinition-example.json', // null event
'activitydefinition-predecessor-example.json', // null event
'activitydefinition-servicerequest-example.json', // null event
'plandefinition-example-cardiology-os.json', // null event
'plandefinition-example.json', // null event
'administrableproductdefinition-example.json', // should not be a status
'adverseevent-example.json', // shoud not be a status
],
r4: [
'examplescenario-questionnaire.canonical.json', // missing linkId
'examplescenario-questionnaire.json', // missing linkId
'activitydefinition-example.json', // null event
'activitydefinition-predecessor-example.json', // null event
'activitydefinition-servicerequest-example.json', // null event
'plandefinition-example-cardiology-os.json', // null event
'plandefinition-example.json', // null event
],
r5: [
'questionnaireresponse-example-f201-lifelines.json' // missing questionnaire, was required in R5-snapshot-3
]
}