Skip to content

Commit d07503f

Browse files
authored
Add Patient, SR and RelatedPerson Resources (#53)
Add Patient, SR and RelatedPerson Resources
1 parent 3816e43 commit d07503f

3 files changed

Lines changed: 211 additions & 0 deletions

File tree

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
{
2+
"resourceType": "Patient",
3+
"id": "Patient-AnitaLambertsDeceasedPatient-Example",
4+
"extension": [
5+
{
6+
"url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-BirthSex",
7+
"valueCode": "F"
8+
},
9+
{
10+
"url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-EthnicCategory",
11+
"valueCodeableConcept": {
12+
"coding": [
13+
{
14+
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-EthnicCategoryEngland",
15+
"code": "A",
16+
"display": "White - British"
17+
}
18+
]
19+
}
20+
}
21+
],
22+
"identifier": [
23+
{
24+
"system": "https://fhir.nhs.uk/Id/nhs-number",
25+
"value": "8449303649",
26+
"extension": [
27+
{
28+
"url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-NHSNumberVerificationStatus",
29+
"valueCodeableConcept": {
30+
"coding": [
31+
{
32+
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-NHSNumberVerificationStatusEngland",
33+
"version": "2.2.0",
34+
"code": "01",
35+
"display": "Number present and verified"
36+
}
37+
]
38+
}
39+
}
40+
]
41+
}
42+
],
43+
"name": [
44+
{
45+
"given": [
46+
"Anita"
47+
],
48+
"family": "Lamberts"
49+
}
50+
],
51+
"gender": "female",
52+
"birthDate": "1993-11-14",
53+
"deceasedBoolean": true,
54+
"address": [
55+
{
56+
"line": [
57+
"1, Vale Roads, Claygate",
58+
"Esher",
59+
"Surrey"
60+
],
61+
"postalCode": "BM17 2QN"
62+
}
63+
],
64+
"generalPractitioner": [
65+
{
66+
"identifier": {
67+
"system": "https://fhir.hl7.org.uk/Id/gmp-number",
68+
"value": "G9999999"
69+
},
70+
"display": "Dr. Aero Smith"
71+
},
72+
{
73+
"identifier": {
74+
"system": "https://fhir.hl7.org.uk/Id/ODS-code",
75+
"value": "AP123"
76+
},
77+
"display": "123 Test Practice"
78+
}
79+
],
80+
"link": [
81+
{
82+
"other": {
83+
"reference": "https://api.service.nhs.uk/personal-demographics/FHIR/R4/Patient/8449303649"
84+
},
85+
"type": "seealso"
86+
}
87+
]
88+
}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"resourceType": "RelatedPerson",
3+
"id":"RelatedPerson-AnitaLambertsDeceasedPatient-Example",
4+
"patient": {
5+
"identifier": {
6+
"system": "https://fhir.nhs.uk/Id/nhs-number",
7+
"value": "8449303649"
8+
}
9+
},
10+
"relationship": [
11+
{
12+
"coding": [
13+
{
14+
"system": "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
15+
"code": "PRN",
16+
"display": "Parent"
17+
}
18+
]
19+
}
20+
]
21+
}
Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
{
2+
"resourceType": "ServiceRequest",
3+
"id": "ServiceRequest-NonWGSTestOrderForm-DeceasedPatient-Example",
4+
"extension": [
5+
{
6+
"url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-Coverage",
7+
"valueCodeableConcept": {
8+
"coding": [
9+
{
10+
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-FundingCategory",
11+
"code": "nhs",
12+
"display": "NHS"
13+
}
14+
]
15+
}
16+
}
17+
],
18+
"status": "active",
19+
"intent": "order",
20+
"category": [
21+
{
22+
"coding": [
23+
{
24+
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-GenomeSequencingCategory",
25+
"code": "rare-disease-non-wgs",
26+
"display": "Rare Disease - Non-WGS"
27+
}
28+
]
29+
}
30+
],
31+
"priority": "routine",
32+
"code": {
33+
"coding": [
34+
{
35+
"system": "https://fhir.nhs.uk/CodeSystem/England-GenomicTestDirectory",
36+
"code": "R138",
37+
"display": "Sudden Cardiac Death"
38+
}
39+
]
40+
},
41+
"subject": {
42+
"reference": "Patient/Patient-AnitaLambertsDeceasedPatient-Example",
43+
"identifier": {
44+
"system": "https://fhir.nhs.uk/Id/nhs-number",
45+
"value": "8449303649"
46+
}
47+
},
48+
"authoredOn": "2023-11-01T10:00:00Z",
49+
"requester": {
50+
"reference": "PractitionerRole/PractitionerRole-GeneSmith-Example"
51+
},
52+
"reasonCode": [
53+
{
54+
"coding": [
55+
{
56+
"system": "http://snomed.info/sct",
57+
"code": "103693007",
58+
"display": "Diagnostic procedure"
59+
}
60+
]
61+
}
62+
],
63+
"supportingInfo": [
64+
{
65+
"reference": "Observation/Observation-GenomicEthnicity-Example"
66+
},
67+
{
68+
"reference": "Observation/Observation-NoPregnancy-Example"
69+
},
70+
{
71+
"reference": "Observation/Observation-DiseaseStatus-Example"
72+
},
73+
{
74+
"reference": "Observation/Observation-NonConsanguinousUnion-Example"
75+
},
76+
{
77+
"reference": "FamilyMemberHistory/FamilyMemberHistory-NonConsanguinousUnion-Example"
78+
},
79+
{
80+
"reference": "Observation/Observation-NoBoneMarrowTransplant-Example"
81+
},
82+
{
83+
"reference": "Observation/Observation-NoTransfusion-Example"
84+
},
85+
{
86+
"reference": "Observation/Observation-RiskOfInfection-Example"
87+
}
88+
],
89+
"specimen": [
90+
{
91+
"display": "Blood EDTA Specimen to be provided later"
92+
}
93+
],
94+
"note": [
95+
{
96+
"text": "No family history of genomic testing"
97+
},
98+
{
99+
"text": "Free text for diagnosis/reason for referral, relevant information including family history, phenotypic details/ HPO Terms."
100+
}
101+
]
102+
}

0 commit comments

Comments
 (0)