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

This case-sensitive code system http://ehealth.sundhed.dk/cs/appointmenttype-codes defines the following codes:

CodeDisplay
CHECKUP A routine check-up, such as an annual physical
EMERGENCY Emergency appointment
FOLLOWUP A follow up visit from a previous appointment
ROUTINE Routine appointment - default if not valued
WALKIN A previously unscheduled walk-in visit
" ] ; # fhir:url [ fhir:v "http://ehealth.sundhed.dk/cs/appointmenttype-codes"^^xsd:anyURI] ; # fhir:version [ fhir:v "3.0.0"] ; # fhir:name [ fhir:v "AppointmentTypeCodes"] ; # fhir:title [ fhir:v "Appointment Type Codes"] ; # 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 "Den telemedicinske infrastruktur (eHealth Infrastructure)"] ; # fhir:contact ( [ fhir:name [ fhir:v "Den telemedicinske infrastruktur (eHealth Infrastructure)" ] ; fhir:telecom ( [ fhir:system [ fhir:v "url" ] ; fhir:value [ fhir:v "http://ehealth.sundhed.dk" ] ] ) ] ) ; # fhir:description [ fhir:v "Appointment type code"] ; # fhir:caseSensitive [ fhir:v "true"^^xsd:boolean] ; # fhir:content [ fhir:v "complete"] ; # fhir:concept ( [ fhir:code [ fhir:v "CHECKUP" ] ; fhir:display [ fhir:v "A routine check-up, such as an annual physical" ] ] [ fhir:code [ fhir:v "EMERGENCY" ] ; fhir:display [ fhir:v "Emergency appointment" ] ] [ fhir:code [ fhir:v "FOLLOWUP" ] ; fhir:display [ fhir:v "A follow up visit from a previous appointment" ] ] [ fhir:code [ fhir:v "ROUTINE" ] ; fhir:display [ fhir:v "Routine appointment - default if not valued" ] ] [ fhir:code [ fhir:v "WALKIN" ] ; fhir:display [ fhir:v "A previously unscheduled walk-in visit" ] ] ) . # # -------------------------------------------------------------------------------------