@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix xsd: . # - resource ------------------------------------------------------------------- a fhir:AppointmentResponse; fhir:nodeRole fhir:treeRoot; fhir:Resource.id [ fhir:value "example"]; fhir:DomainResource.text [ fhir:Narrative.status [ fhir:value "generated" ]; fhir:Narrative.div "
Accept Brian MRI results discussion
" ]; fhir:AppointmentResponse.appointment [ fhir:link ; fhir:Reference.reference [ fhir:value "Appointment/example" ]; fhir:Reference.display [ fhir:value "Brian MRI results discussion" ] ]; fhir:AppointmentResponse.actor [ fhir:link ; fhir:Reference.reference [ fhir:value "Patient/example" ]; fhir:Reference.display [ fhir:value "Peter James Chalmers" ] ]; fhir:AppointmentResponse.participantStatus [ fhir:value "accepted"] . a fhir:Appointment . a fhir:Patient . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------