Skip to content

Commit 3677f20

Browse files
committed
[IOPS-4427] Questionnaire for sex and ethnicity
Required as PDS does not persist this information and Patient resources are disallowed by PDM platform
1 parent 380ba95 commit 3677f20

2 files changed

Lines changed: 81 additions & 0 deletions

File tree

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
"resourceType": "Questionnaire",
3+
"url": "https://fhir.nhs.uk/Questionnaire/Patient-Extensions-Example",
4+
"title": "Patient Extensions",
5+
"status": "draft",
6+
"purpose": "For recording ethnicity and sex at birth",
7+
"item": [
8+
{
9+
"linkId": "364699009",
10+
"code": [
11+
{
12+
"system": "http://snomed.info/sct",
13+
"code": "364699009",
14+
"display": "Ethnic group"
15+
}
16+
],
17+
"prefix": "P-9",
18+
"text": "Patient - Ethnicity",
19+
"type": "choice",
20+
"required": true,
21+
"repeats": false,
22+
"answerValueSet": "https://fhir.hl7.org.uk/ValueSet/UKCore-EthnicCategory"
23+
},
24+
{
25+
"linkId": "1345193002",
26+
"code": [
27+
{
28+
"system": "http://snomed.info/sct",
29+
"code": "1345193002",
30+
"display": "Sex of neonate assigned at birth"
31+
}
32+
],
33+
"prefix": "P-10",
34+
"text": "Patient - Sex defined at birth",
35+
"type": "choice",
36+
"required": true,
37+
"repeats": false,
38+
"answerValueSet": "https://fhir.hl7.org.uk/ValueSet/UKCore-BirthSex"
39+
}
40+
]
41+
}
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"resourceType": "QuestionnaireResponse",
3+
"questionnaire": "https://fhir.nhs.uk/Questionnaire/Patient-Extensions-Example",
4+
"status": "completed",
5+
"subject": {
6+
"identifier": {
7+
"system": "https://fhir.nhs.uk/Id/nhs-number",
8+
"value": "7449306524"
9+
}
10+
},
11+
"authored": "2023-10-01T15:00:00Z",
12+
"item": [
13+
{
14+
"linkId": "364699009",
15+
"text": "Patient - Ethnicity",
16+
"answer": [
17+
{
18+
"valueCoding": {
19+
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-EthnicCategoryEngland",
20+
"code": "A",
21+
"display": "British, Mixed British"
22+
}
23+
}
24+
]
25+
},
26+
{
27+
"linkId": "1345193002",
28+
"text": "Patient - Sex defined at birth",
29+
"answer": [
30+
{
31+
"valueCoding": {
32+
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-BirthSex",
33+
"code": "male",
34+
"display": "Male"
35+
}
36+
}
37+
]
38+
}
39+
]
40+
}

0 commit comments

Comments
 (0)