Skip to content

Commit df26bb4

Browse files
authored
Merge pull request #163 from steveswinsburg/more-test-data
More test data
2 parents 79454d5 + 24162b6 commit df26bb4

19 files changed

+1303
-0
lines changed

au-fhir-test-data-set/au-core/AllergyIntolerance-chlorhexidine.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,10 @@
5959
],
6060
"severity": "mild"
6161
}
62+
],
63+
"note": [
64+
{
65+
"text": "Patient experienced mild hives after exposure to chlorhexidine. Monitor for worsening reactions."
66+
}
6267
]
6368
}

au-fhir-test-data-set/au-core/AllergyIntolerance-gluten.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,10 @@
5959
],
6060
"severity": "mild"
6161
}
62+
],
63+
"note": [
64+
{
65+
"text": "Patient reports fatigue after gluten consumption. Advised to maintain a gluten-free diet to avoid symptoms."
66+
}
6267
]
6368
}

au-fhir-test-data-set/au-core/AllergyIntolerance-peanut.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,10 @@
7373
],
7474
"severity": "severe"
7575
}
76+
],
77+
"note": [
78+
{
79+
"text": "Severe peanut allergy with history of throat constriction. Patient carries epinephrine auto-injector and requires strict avoidance of peanuts."
80+
}
7681
]
7782
}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"resourceType": "Condition",
3+
"id": "chronic-asthma",
4+
"meta": {
5+
"profile": [
6+
"http://hl7.org.au/fhir/core/StructureDefinition/au-core-condition"
7+
]
8+
},
9+
"clinicalStatus": {
10+
"coding": [
11+
{
12+
"system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
13+
"code": "active",
14+
"display": "Active"
15+
}
16+
]
17+
},
18+
"verificationStatus": {
19+
"coding": [
20+
{
21+
"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
22+
"code": "confirmed",
23+
"display": "Confirmed"
24+
}
25+
]
26+
},
27+
"category": [
28+
{
29+
"coding": [
30+
{
31+
"system": "http://terminology.hl7.org/CodeSystem/condition-category",
32+
"code": "problem-list-item",
33+
"display": "Problem List Item"
34+
}
35+
]
36+
}
37+
],
38+
"severity": {
39+
"coding": [
40+
{
41+
"system": "http://snomed.info/sct",
42+
"code": "6736007",
43+
"display": "Moderate severity"
44+
}
45+
]
46+
},
47+
"code": {
48+
"coding": [
49+
{
50+
"system": "http://snomed.info/sct",
51+
"code": "195967001",
52+
"display": "Asthma"
53+
}
54+
]
55+
},
56+
"subject": {
57+
"reference": "Patient/italia-sofia",
58+
"display": "Sofia Italia"
59+
},
60+
"onsetDateTime": "2018-03-15",
61+
"recordedDate": "2018-03-20",
62+
"recorder": {
63+
"reference": "PractitionerRole/generalpractitioner-guthridge-jarred"
64+
},
65+
"note": [
66+
{
67+
"text": "Patient has chronic asthma which increases risk for influenza complications. Annual influenza vaccination strongly recommended."
68+
}
69+
]
70+
}
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"resourceType": "Condition",
3+
"id": "immunocompromised",
4+
"meta": {
5+
"profile": [
6+
"http://hl7.org.au/fhir/core/StructureDefinition/au-core-condition"
7+
]
8+
},
9+
"clinicalStatus": {
10+
"coding": [
11+
{
12+
"system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
13+
"code": "active",
14+
"display": "Active"
15+
}
16+
]
17+
},
18+
"verificationStatus": {
19+
"coding": [
20+
{
21+
"system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
22+
"code": "confirmed",
23+
"display": "Confirmed"
24+
}
25+
]
26+
},
27+
"category": [
28+
{
29+
"coding": [
30+
{
31+
"system": "http://terminology.hl7.org/CodeSystem/condition-category",
32+
"code": "problem-list-item",
33+
"display": "Problem List Item"
34+
}
35+
]
36+
}
37+
],
38+
"severity": {
39+
"coding": [
40+
{
41+
"system": "http://snomed.info/sct",
42+
"code": "24484000",
43+
"display": "Severe"
44+
}
45+
]
46+
},
47+
"code": {
48+
"coding": [
49+
{
50+
"system": "http://snomed.info/sct",
51+
"code": "234532001",
52+
"display": "Immunodeficiency disorder"
53+
}
54+
]
55+
},
56+
"subject": {
57+
"reference": "Patient/baratz-toni",
58+
"display": "Toni Baratz"
59+
},
60+
"onsetDateTime": "2020-08-10",
61+
"recordedDate": "2020-08-15",
62+
"recorder": {
63+
"reference": "PractitionerRole/generalpractitioner-guthridge-jarred"
64+
},
65+
"note": [
66+
{
67+
"text": "Patient has immunodeficiency disorder requiring enhanced infection prevention measures. Annual influenza vaccination is essential due to increased risk of severe complications."
68+
}
69+
]
70+
}
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"resourceType": "Encounter",
3+
"id": "influenza-admin-1",
4+
"meta": {
5+
"profile": [
6+
"http://hl7.org.au/fhir/core/StructureDefinition/au-core-encounter"
7+
]
8+
},
9+
"status": "finished",
10+
"class": {
11+
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
12+
"code": "AMB",
13+
"display": "ambulatory"
14+
},
15+
"serviceType": {
16+
"coding": [
17+
{
18+
"system": "http://snomed.info/sct",
19+
"code": "1633181000168107",
20+
"display": "Influenza vaccination service"
21+
}
22+
]
23+
},
24+
"subject": {
25+
"reference": "Patient/baratz-toni"
26+
},
27+
"participant": [
28+
{
29+
"type": [
30+
{
31+
"coding": [
32+
{
33+
"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
34+
"code": "PPRF",
35+
"display": "primary performer"
36+
}
37+
]
38+
}
39+
],
40+
"individual": {
41+
"reference": "PractitionerRole/generalpractitioner-guthridge-jarred"
42+
}
43+
}
44+
],
45+
"period": {
46+
"start": "2022-04-11T09:20:00+10:00",
47+
"end": "2022-04-11T09:35:00+10:00"
48+
},
49+
"reasonCode": [
50+
{
51+
"coding": [
52+
{
53+
"system": "http://snomed.info/sct",
54+
"code": "12866006",
55+
"display": "Influenza prevention"
56+
}
57+
]
58+
}
59+
],
60+
"reasonReference": [
61+
{
62+
"reference": "Condition/immunocompromised"
63+
}
64+
],
65+
"location": [
66+
{
67+
"location": {
68+
"reference": "Location/elimbah-medical-centre"
69+
}
70+
}
71+
],
72+
"serviceProvider": {
73+
"reference": "Organization/elimbah-medical-centre"
74+
}
75+
}
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"resourceType": "Encounter",
3+
"id": "influenza-admin-2",
4+
"meta": {
5+
"profile": [
6+
"http://hl7.org.au/fhir/core/StructureDefinition/au-core-encounter"
7+
]
8+
},
9+
"status": "finished",
10+
"class": {
11+
"system": "http://terminology.hl7.org/CodeSystem/v3-ActCode",
12+
"code": "AMB",
13+
"display": "ambulatory"
14+
},
15+
"serviceType": {
16+
"coding": [
17+
{
18+
"system": "http://snomed.info/sct",
19+
"code": "1633181000168107",
20+
"display": "Influenza vaccination service"
21+
}
22+
]
23+
},
24+
"subject": {
25+
"reference": "Patient/baratz-toni"
26+
},
27+
"participant": [
28+
{
29+
"type": [
30+
{
31+
"coding": [
32+
{
33+
"system": "http://terminology.hl7.org/CodeSystem/v3-ParticipationType",
34+
"code": "PPRF",
35+
"display": "primary performer"
36+
}
37+
]
38+
}
39+
],
40+
"individual": {
41+
"reference": "PractitionerRole/generalpractitioner-guthridge-jarred"
42+
}
43+
}
44+
],
45+
"period": {
46+
"start": "2023-04-11T09:20:00+10:00",
47+
"end": "2023-04-11T09:35:00+10:00"
48+
},
49+
"reasonCode": [
50+
{
51+
"coding": [
52+
{
53+
"system": "http://snomed.info/sct",
54+
"code": "12866006",
55+
"display": "Influenza prevention"
56+
}
57+
]
58+
}
59+
],
60+
"reasonReference": [
61+
{
62+
"reference": "Condition/immunocompromised"
63+
}
64+
],
65+
"location": [
66+
{
67+
"location": {
68+
"reference": "Location/elimbah-medical-centre"
69+
}
70+
}
71+
],
72+
"serviceProvider": {
73+
"reference": "Organization/elimbah-medical-centre"
74+
}
75+
}

0 commit comments

Comments
 (0)