@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:CodeSystem ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "ehealth-priority"] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "

This code system http://ehealth.sundhed.dk/cs/priority defines the following codes:

CodeDisplayDefinition
routine RoutineThe request has normal priority.
urgent UrgentThe request should be actioned promptly - higher priority than routine.
asap ASAPThe request should be actioned as soon as possible - higher priority than urgent.
stat STATThe request should be actioned immediately - highest possible priority. E.g. an emergency.
" ] ; # fhir:url [ fhir:v "http://ehealth.sundhed.dk/cs/priority"^^xsd:anyURI] ; # fhir:version [ fhir:v "2.10.0"] ; # fhir:name [ fhir:v "Priority"] ; # fhir:title [ fhir:v "Priority"] ; # fhir:status [ fhir:v "active"] ; # fhir:experimental [ fhir:v "false"^^xsd:boolean] ; # fhir:date [ fhir:v "2019-01-29T00:00:00+00:00"^^xsd:dateTime] ; # fhir:publisher [ fhir:v "Systematic | Trifork"] ; # fhir:contact ( [ fhir:name [ fhir:v "Systematic | Trifork" ] ; fhir:telecom ( [ fhir:system [ fhir:v "url" ] ; fhir:value [ fhir:v "http://ehealth.sundhed.dk" ] ] ) ] ) ; # fhir:description [ fhir:v "Priority"] ; # fhir:caseSensitive [ fhir:v "true"^^xsd:boolean] ; # fhir:content [ fhir:v "complete"] ; # fhir:concept ( [ fhir:code [ fhir:v "routine" ] ; fhir:display [ fhir:v "Routine" ] ; fhir:definition [ fhir:v "The request has normal priority." ] ] [ fhir:code [ fhir:v "urgent" ] ; fhir:display [ fhir:v "Urgent" ] ; fhir:definition [ fhir:v "The request should be actioned promptly - higher priority than routine." ] ] [ fhir:code [ fhir:v "asap" ] ; fhir:display [ fhir:v "ASAP" ] ; fhir:definition [ fhir:v "The request should be actioned as soon as possible - higher priority than urgent." ] ] [ fhir:code [ fhir:v "stat" ] ; fhir:display [ fhir:v "STAT" ] ; fhir:definition [ fhir:v "The request should be actioned immediately - highest possible priority. E.g. an emergency." ] ] ) . # # -------------------------------------------------------------------------------------