Please note:
- This version of the UK Core is a development copy.
- This contains BREAKING CHANGES as a result of the C&TA Sprint 7 Review, and STU2 Sequence ballot reconciliation.
- This version is not yet reviewed for implementation. Other versions are available on the UK Core Version History Guide
- Please follow the guidance on the Contact Us page if you need any assistance.
- A summary of changes is available on the STU3 Sequence Change Log
An example to illustrate a skin examination procedure
Table View
Procedure.id[0] | UKCore-Procedure-ExaminationOfSkin-Example |
Procedure.text[0].status[0] | additional |
Procedure.text[0].div[0] | <div xmlns="http://www.w3.org/1999/xhtml">An example to illustrate a skin examination procedure</div> |
Procedure.status[0] | completed |
Procedure.code[0].coding[0].system[0] | http://snomed.info/sct |
Procedure.code[0].coding[0].code[0] | 128004 |
Procedure.code[0].coding[0].display[0] | Hand microscope examination of skin |
Procedure.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
Procedure.performed[0] | 2019-12-10T13:00:00+00:00 |
Tree View
Procedure |
id : UKCore-Procedure-ExaminationOfSkin-Example |
text |
status : additional |
status : completed |
code |
coding |
system : http://snomed.info/sct |
code : 128004 |
display : Hand microscope examination of skin |
subject |
reference : Patient/UKCore-Patient-RichardSmith-Example |
performed : 2019-12-10T13:00:00+00:00 |
XML View
<Procedure xmlns="http://hl7.org/fhir"> <id value="UKCore-Procedure-ExaminationOfSkin-Example" /> <text> <status value="additional" /> --- We have skipped the narrative for better readability of the resource --- </text> <status value="completed" /> <code> <coding> <system value="http://snomed.info/sct" /> <code value="128004" /> <display value="Hand microscope examination of skin" /> </coding> </code> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> <performedDateTime value="2019-12-10T13:00:00+00:00" /> </Procedure>
JSON View
{ "resourceType": "Procedure", "id": "UKCore-Procedure-ExaminationOfSkin-Example", "text": { "status": "additional", --- We have skipped the narrative for better readability of the resource --- }, "status": "completed", "code": { "coding": [ { "system": "http://snomed.info/sct", "code": "128004", "display": "Hand microscope examination of skin" } ] }, "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" }, "performedDateTime": "2019-12-10T13:00:00+00:00" }