Skip to content

Commit 2270935

Browse files
authored
Merge branch 'main' into Issue-2663
2 parents dce8590 + 695697f commit 2270935

File tree

4 files changed

+156
-9
lines changed

4 files changed

+156
-9
lines changed
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"resourceType" : "Consent",
3+
"id" : "Consent-UGRConsentForResearch-Example",
4+
"meta" : {
5+
"profile" : [
6+
"https://profiles.ihe.net/ITI/PCF/StructureDefinition/IHE.PCF.consentBasic"
7+
]
8+
},
9+
"status" : "active",
10+
"scope" : {
11+
"coding" : [
12+
{
13+
"system" : "http://terminology.hl7.org/CodeSystem/consentscope",
14+
"code" : "patient-privacy"
15+
}
16+
]
17+
},
18+
"category" : [
19+
{
20+
"coding" : [
21+
{
22+
"system" : "http://loinc.org",
23+
"code" : "59284-0",
24+
"display" : "Consent"
25+
}
26+
]
27+
}
28+
],
29+
"patient" : {
30+
"reference" : "Patient/Patient-MeirLieberman-Example"
31+
},
32+
"dateTime" : "2025-04-24",
33+
"performer" : [
34+
{
35+
"reference" : "Patient/Patient-MeirLieberman-Example"
36+
}
37+
],
38+
"organization" : [
39+
{
40+
"identifier" : {
41+
"system": "https://fhir.hl7.org.uk/Id/ODS-code",
42+
"value": "X26"
43+
}
44+
}
45+
],
46+
"sourceReference" : {
47+
"reference" : "QuestionnaireResponse/QuestionnaireResponse-ConsentQuestionnaire-Example"
48+
},
49+
"policy" : [
50+
{
51+
"uri" : "https://www.england.nhs.uk/wp-content/uploads/2018/05/nhs-england-privacy-notice-v1.77.pdf"
52+
}
53+
],
54+
"provision" : {
55+
"type" : "permit",
56+
"purpose" : [
57+
{
58+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ActReason",
59+
"code" : "HRESCH"
60+
}
61+
]
62+
}
63+
}
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"resourceType" : "Consent",
3+
"id" : "Consent-UGRGenomicData-Example",
4+
"status" : "active",
5+
"scope" : {
6+
"coding" : [
7+
{
8+
"system" : "http://terminology.hl7.org/CodeSystem/consentscope",
9+
"code" : "patient-privacy"
10+
}
11+
]
12+
},
13+
"category" : [
14+
{
15+
"coding" : [
16+
{
17+
"system" : "http://loinc.org",
18+
"code" : "59284-0",
19+
"display" : "Consent"
20+
}
21+
]
22+
}
23+
],
24+
"patient" : {
25+
"reference" : "Patient/Patient-MeirLieberman-Example"
26+
},
27+
"dateTime" : "2025-04-24",
28+
"performer" : [
29+
{
30+
"reference" : "Patient/Patient-MeirLieberman-Example"
31+
}
32+
],
33+
"organization" : [
34+
{
35+
"identifier" : {
36+
"system": "https://fhir.hl7.org.uk/Id/ODS-code",
37+
"value": "X26"
38+
}
39+
}
40+
],
41+
"sourceReference" : {
42+
"reference" : "QuestionnaireResponse/QuestionnaireResponse-ConsentQuestionnaire-Example"
43+
},
44+
"policy" : [
45+
{
46+
"uri" : "https://www.england.nhs.uk/wp-content/uploads/2018/05/nhs-england-privacy-notice-v1.77.pdf"
47+
}
48+
],
49+
"provision" : {
50+
"type" : "permit",
51+
"purpose" : [
52+
{
53+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ActReason",
54+
"code" : "POPHLTH"
55+
},
56+
{
57+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ActReason",
58+
"code" : "HRESCH"
59+
},
60+
{
61+
"system" : "http://terminology.hl7.org/CodeSystem/v3-ActReason",
62+
"code" : "HOPERAT"
63+
}
64+
],
65+
"class" : [
66+
{
67+
"system" : "http://hl7.org/fhir/resource-types",
68+
"code" : "DocumentReference",
69+
"display" : "DocumentReference"
70+
}
71+
],
72+
"data" : [
73+
{
74+
"meaning" : "instance",
75+
"reference" : {
76+
"reference" : "DocumentReference/DocumentReference-PharmCAT-Example"
77+
}
78+
}
79+
]
80+
}
81+
}

fhirpkg.lock.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99
"hl7.fhir.uv.extensions.r4": "1.0.0",
1010
"hl7.fhir.uv.ips": "1.1.0",
1111
"fhir.dicom": "2022.4.20221006",
12-
"hl7.fhir.eu.laboratory": "0.1.0-ballot"
12+
"hl7.fhir.eu.laboratory": "0.1.0-ballot",
13+
"ihe.iti.pcf": "1.0.0-comment",
14+
"hl7.fhir.r4b.core": "4.3.0",
15+
"us.nlm.vsac": "0.9.0",
16+
"ihe.iti.balp": "1.1.1"
1317
},
1418
"missing": {}
1519
}

package.json

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
"name": "uk.nhsdigital.r4.genomics",
33
"description": "FHIR Genomics Implementation Guide",
44
"author": "nhsdigital",
5-
"fhirVersions": [
6-
"4.0.1"
7-
],
8-
"jurisdiction": "urn:iso:std:iso:3166:-2:GB-ENG",
95
"dependencies": {
106
"fhir.r4.ukcore.stu3.currentbuild": "0.24.0-pre-release",
117
"hl7.fhir.r4.core": "4.0.1",
128
"hl7.fhir.uv.genomics-reporting": "3.0.0-ballot",
139
"hl7.fhir.uv.ips": "1.1.0",
14-
"hl7.fhir.eu.laboratory": "0.1.0-ballot"
15-
}
10+
"hl7.fhir.eu.laboratory": "0.1.0-ballot",
11+
"ihe.iti.pcf": "1.0.0-comment"
12+
},
13+
"fhirVersions": [
14+
"4.0.1"
15+
],
16+
"jurisdiction": "urn:iso:std:iso:3166:-2:GB-ENG"
1617
}
17-
18-

0 commit comments

Comments
 (0)