@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:Appointment; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "2docs"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
Brian MRI results discussion
" ]; fhir:Appointment.status [ fhir:value "booked"]; fhir:Appointment.serviceCategory [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://example.org/service-category" ]; fhir:Coding.code [ fhir:value "gp" ]; fhir:Coding.display [ fhir:value "General Practice" ] ] ]; fhir:Appointment.serviceType [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.code [ fhir:value "52" ]; fhir:Coding.display [ fhir:value "General Discussion" ] ] ]; fhir:Appointment.specialty [ fhir:index 0; fhir:CodeableConcept.coding [ fhir:index 0; a sct:394814009; fhir:Coding.system [ fhir:value "http://snomed.info/sct" ]; fhir:Coding.code [ fhir:value "394814009" ]; fhir:Coding.display [ fhir:value "General practice" ] ] ]; fhir:Appointment.appointmentType [ fhir:CodeableConcept.coding [ fhir:index 0; fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0276" ]; fhir:Coding.code [ fhir:value "WALKIN" ]; fhir:Coding.display [ fhir:value "A previously unscheduled walk-in visit" ] ] ]; fhir:Appointment.priority [ fhir:value "5"^^xsd:nonNegativeInteger]; fhir:Appointment.description [ fhir:value "Discussion about Peter Chalmers MRI results"]; fhir:Appointment.supportingInformation [ fhir:index 0; fhir:link ; fhir:Reference.reference [ fhir:value "DiagnosticReport/ultrasound" ] ]; fhir:Appointment.start [ fhir:value "2013-12-09T09:00:00Z"^^xsd:dateTime]; fhir:Appointment.end [ fhir:value "2013-12-09T11:00:00Z"^^xsd:dateTime]; fhir:Appointment.comment [ fhir:value "Clarify the results of the MRI to ensure context of test was correct"]; fhir:Appointment.participant [ fhir:index 0; fhir:Appointment.participant.actor [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ]; fhir:Reference.display [ fhir:value "Peter James Chalmers" ] ]; fhir:Appointment.participant.required [ fhir:value "information-only" ]; fhir:Appointment.participant.status [ fhir:value "accepted" ] ], [ fhir:index 1; fhir:Appointment.participant.actor [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/example" ]; fhir:Reference.display [ fhir:value "Dr Adam Careful" ] ]; fhir:Appointment.participant.required [ fhir:value "required" ]; fhir:Appointment.participant.status [ fhir:value "accepted" ] ], [ fhir:index 2; fhir:Appointment.participant.actor [ fhir:link ; fhir:Reference.reference [ fhir:value "Practitioner/f202" ]; fhir:Reference.display [ fhir:value "Luigi Maas" ] ]; fhir:Appointment.participant.required [ fhir:value "required" ]; fhir:Appointment.participant.status [ fhir:value "accepted" ] ], [ fhir:index 3; fhir:Appointment.participant.actor [ fhir:Reference.display [ fhir:value "Phone Call" ] ]; fhir:Appointment.participant.required [ fhir:value "information-only" ]; fhir:Appointment.participant.status [ fhir:value "accepted" ] ] . a fhir:DiagnosticReport . a fhir:Patient . a fhir:Practitioner . a fhir:Practitioner . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------