@@ -67,6 +67,7 @@ class PointerTypes(Enum):
6767 MRA_UPPER_LIMB_ARTERY = "https://nicip.nhs.uk|MAULR"
6868 MRI_AXILLA_BOTH = "https://nicip.nhs.uk|MAXIB"
6969 APPOINTMENT = "http://snomed.info/sct|749001000000101"
70+ SHARED_CARE_RECORD = "http://snomed.info/sct|887181000000106"
7071
7172 @staticmethod
7273 def list ():
@@ -86,6 +87,7 @@ class Categories(Enum):
8687 DIAGNOSTIC_STUDIES_REPORT = "http://snomed.info/sct|721981007"
8788 DIAGNOSTIC_PROCEDURE = "http://snomed.info/sct|103693007"
8889 RECORD_ARTIFACT = "http://snomed.info/sct|419891008"
90+ RECORD_HEADINGS = "http://snomed.info/sct|716931000000107"
8991
9092 @staticmethod
9193 def list ():
@@ -115,6 +117,7 @@ def coding_value(self):
115117 "display" : "Diagnostic procedure" ,
116118 },
117119 Categories .RECORD_ARTIFACT .value : {"display" : "Record artifact" },
120+ Categories .RECORD_HEADINGS .value : {"display" : "Record headings" },
118121}
119122
120123TYPE_ATTRIBUTES = {
@@ -163,6 +166,7 @@ def coding_value(self):
163166 PointerTypes .APPOINTMENT .value : {
164167 "display" : "Appointment" ,
165168 },
169+ PointerTypes .SHARED_CARE_RECORD .value : {"display" : "Clinical summary" },
166170}
167171
168172TYPE_CATEGORIES = {
@@ -191,6 +195,9 @@ def coding_value(self):
191195 #
192196 # Bookings and Referrals
193197 PointerTypes .APPOINTMENT .value : Categories .RECORD_ARTIFACT .value ,
198+ #
199+ # Shared Care Records
200+ PointerTypes .SHARED_CARE_RECORD .value : Categories .RECORD_HEADINGS .value ,
194201}
195202
196203PRACTICE_SETTING_VALUE_SET_URL = (
0 commit comments