Skip to content

Commit 36c691b

Browse files
authored
Creating Questionnaire and Questionnaire Response (#7)
* Creating Questionnaire and Questionnaire Response Addition of Questionnaire, QuestionnaireResponse, their CodeSystems and ValuSets * Providing clarification on Hospital Number Change linkid to patientMRN * Updating CodeSystem for Attorney Types Updating ValueSets and CodeSystem for attorney types. All issues raised on first commit have equally been resolved. * Update NHSDigital-QuestionnaireResponse-Genomics-Example.json Correction on text for attorney linkid * Update NHSDigital-Questionnaire-Genomics-Example.json Adding Enable When condition to question: "If answer to research choice A is NO" * Update NHSDigital-Questionnaire-Genomics-Example.json Adding Enable When to Question: "If answer to research choice A is NO" * Update NHSDigital-Questionnaire-Genomics-Example.json Adding Enable When to Question: "If answer to research choice A is NO" * Update NHSDigital-Questionnaire-Genomics-Example.json Adding Enable When to Question: "If answer to research choice A is NO" * Reversing Enable When on Research Choice Que Reversing Enable When on Research Choice Que due to issues in QResponse
1 parent 11a29f7 commit 36c691b

10 files changed

Lines changed: 936 additions & 0 deletions
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"resourceType": "CodeSystem",
3+
"url": "https://fhir.nhs.uk/CodeSystem/patient-choice-category-genomics",
4+
"identifier": [
5+
{
6+
"system": "https://fhir.nhs.uk/identifier/CodeSystem",
7+
"value": "patient-choice-category-genomics"
8+
}
9+
],
10+
"version": "0.1.0",
11+
"name": "PatientChoiceCategoryGenomics",
12+
"title": "Patient Choice Category Genomics",
13+
"status": "draft",
14+
"date": "2022-12-21T11:27:52.3231281+00:00",
15+
"publisher": "NHS Digital",
16+
"contact": [
17+
{
18+
"name": "NHS Digital",
19+
"telecom": [
20+
{
21+
"system": "email",
22+
"value": "interoperabilityteam@nhs.net",
23+
"use": "work"
24+
}
25+
]
26+
}
27+
],
28+
"description": "A set of codes use to identify the categories of sources of obtaining the patient consent before undergoing Genomic test.",
29+
"copyright": "Copyright © 2022 NHS Digital",
30+
"caseSensitive": true,
31+
"content": "complete",
32+
"concept": [
33+
{
34+
"code": "AOC",
35+
"display": "Adult (made their own choice)"
36+
},
37+
{
38+
"code": "ALC",
39+
"display": "Adult lacking capacity (choices advised by consultee)"
40+
},
41+
{
42+
"code": "CPG",
43+
"display": "Child (parent or guardian choices)"
44+
},
45+
{
46+
"code": "CL",
47+
"display": "Clinician has agreed to the test (in the patient`s best interest)"
48+
},
49+
{
50+
"code": "D",
51+
"display": "Deceased (choices made on behalf of deceased individual)"
52+
}
53+
]
54+
}
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
{
2+
"resourceType": "CodeSystem",
3+
"url": "https://fhir.nhs.uk/CodeSystem/patient-consultee-genomics",
4+
"identifier": [
5+
{
6+
"system": "https://fhir.nhs.uk/identifier/CodeSystem",
7+
"value": "patient-consultee-genomics"
8+
}
9+
],
10+
"version": "0.1.0",
11+
"name": "PatientConsulteeGenomics",
12+
"title": "Patient Consultee Genomics",
13+
"status": "draft",
14+
"date": "2022-12-28T16:41:15.0168724+00:00",
15+
"publisher": "NHS Digital",
16+
"contact": [
17+
{
18+
"name": "NHS Digital",
19+
"telecom": [
20+
{
21+
"system": "email",
22+
"value": "interoperabilityteam@nhs.net",
23+
"use": "work"
24+
}
25+
]
26+
}
27+
],
28+
"description": "A code to identify if patient guardian is a Consultee",
29+
"copyright": "Copyright © 2022 NHS Digital",
30+
"caseSensitive": true,
31+
"content": "complete",
32+
"concept": [
33+
{
34+
"code": "CNS",
35+
"display": "Conslutee"
36+
}
37+
]
38+
}
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"resourceType": "CodeSystem",
3+
"url": "https://fhir.nhs.uk/CodeSystem/patient-choice-researchparticipation",
4+
"identifier": [
5+
{
6+
"system": "https://fhir.nhs.uk/identifier/CodeSystem",
7+
"value": "patient-choice-researchparticipation"
8+
}
9+
],
10+
"version": "0.1.0",
11+
"name": "PatientChoiceResearchParticipation",
12+
"title": "Patient Choice Research Participation",
13+
"status": "draft",
14+
"date": "2022-12-21T11:27:52.3231281+00:00",
15+
"publisher": "NHS Digital",
16+
"contact": [
17+
{
18+
"name": "NHS Digital",
19+
"telecom": [
20+
{
21+
"system": "email",
22+
"value": "interoperabilityteam@nhs.net",
23+
"use": "work"
24+
}
25+
]
26+
}
27+
],
28+
"description": "A set of codes use to identify the sources of obtaining the patient consent in participating in the National Genomic Research.",
29+
"copyright": "Copyright © 2022 NHS Digital",
30+
"caseSensitive": true,
31+
"content": "complete",
32+
"concept": [
33+
{
34+
"code": "LKD",
35+
"display": "Patient would like to discuss at a later date"
36+
},
37+
{
38+
"code": "PLC",
39+
"display": "Patient lacks capacity and no consultee available"
40+
},
41+
{
42+
"code": "ITD",
43+
"display": "Inappropriate to have discussion"
44+
},
45+
{
46+
"code": "O",
47+
"display": "Other"
48+
}
49+
]
50+
}
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"resourceType": "CodeSystem",
3+
"url": "https://fhir.nhs.uk/CodeSystem/test-type-genomics",
4+
"identifier": [
5+
{
6+
"system": "https://fhir.nhs.uk/identifier/CodeSystem",
7+
"value": "test-type-genomics"
8+
}
9+
],
10+
"version": "0.1.0",
11+
"name": "TestTypeGenomics",
12+
"title": "Test Type Genomics",
13+
"status": "draft",
14+
"date": "2022-12-21T11:27:52.3231281+00:00",
15+
"publisher": "NHS Digital",
16+
"contact": [
17+
{
18+
"name": "NHS Digital",
19+
"telecom": [
20+
{
21+
"system": "email",
22+
"value": "interoperabilityteam@nhs.net",
23+
"use": "work"
24+
}
25+
]
26+
}
27+
],
28+
"description": "A set of codes use to identify the category of genomic test types",
29+
"copyright": "Copyright © 2022 NHS Digital",
30+
"caseSensitive": true,
31+
"content": "complete",
32+
"concept": [
33+
{
34+
"code": "RID-WGS",
35+
"display": "Rare and Inherited Diseases - WGS"
36+
},
37+
{
38+
"code": "C-WGS",
39+
"display": "Cancer (paired tumour normal) - WGS"
40+
}
41+
]
42+
}

0 commit comments

Comments
 (0)