Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions Questionnaire/Questionnaire-Patient-Extensions-Example.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"resourceType": "Questionnaire",
"url": "https://fhir.nhs.uk/Questionnaire/Patient-Extensions-Example",
"title": "Patient Extensions",
"status": "draft",
"purpose": "For recording ethnicity and sex at birth",
"item": [
{
"linkId": "364699009",
"code": [
Comment thread
KazeemHamzat marked this conversation as resolved.
{
"system": "http://snomed.info/sct",
"code": "364699009",
"display": "Ethnic group"
}
],
"prefix": "P-9",
"text": "Patient - Ethnicity",
"type": "choice",
"required": true,
"repeats": false,
"answerValueSet": "https://fhir.hl7.org.uk/ValueSet/UKCore-EthnicCategory"
},
{
"linkId": "1345193002",
"code": [
Comment thread
KazeemHamzat marked this conversation as resolved.
{
"system": "http://snomed.info/sct",
"code": "1345193002",
"display": "Sex of neonate assigned at birth"
}
],
"prefix": "P-10",
"text": "Patient - Sex defined at birth",
"type": "choice",
"required": true,
"repeats": false,
"answerValueSet": "https://fhir.hl7.org.uk/ValueSet/UKCore-BirthSex"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"resourceType": "QuestionnaireResponse",
"questionnaire": "https://fhir.nhs.uk/Questionnaire/Patient-Extensions-Example",
"status": "completed",
"subject": {
"identifier": {
"system": "https://fhir.nhs.uk/Id/nhs-number",
"value": "7449306524"
}
},
"authored": "2023-10-01T15:00:00Z",
"item": [
{
"linkId": "364699009",
"text": "Patient - Ethnicity",
"answer": [
{
"valueCoding": {
"system": "https://fhir.hl7.org.uk/CodeSystem/UKCore-EthnicCategoryEngland",
"code": "A",
"display": "British, Mixed British"
}
}
]
},
{
"linkId": "1345193002",
"text": "Patient - Sex defined at birth",
"answer": [
{
"valueCoding": {
"system": "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender",
"code": "M",
"display": "Male"
}
}
]
}
]
}