Please note:
- This version of the UK Core is for C&TA Sprint 7 Review.
- This version is not suitable 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 the extension which is used to indicate the episodicity status of a condition
Table View
Condition.id[0] | UKCore-Extension-ConditionEpisode-Example |
Condition.extension[0].url[0] | https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ConditionEpisode |
Condition.extension[0].value[0] | new |
Condition.subject[0].reference[0] | Patient/UKCore-Patient-RichardSmith-Example |
XML View
<Condition xmlns="http://hl7.org/fhir"> <id value="UKCore-Extension-ConditionEpisode-Example" /> <!-- **************extension start************** --> <extension url="https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ConditionEpisode"> <valueCode value="new" /> </extension> <!-- **************extension end************** --> <subject> <reference value="Patient/UKCore-Patient-RichardSmith-Example" /> </subject> </Condition>
JSON View
{ "resourceType": "Condition", "id": "UKCore-Extension-ConditionEpisode-Example", "extension": [ { "url": "https://fhir.hl7.org.uk/StructureDefinition/Extension-UKCore-ConditionEpisode", "valueCode": "new" } ], "subject": { "reference": "Patient/UKCore-Patient-RichardSmith-Example" } }