0.1.0 - ci-build

mamaTotofhirIG, published by IntelliSOFT Consulting Ke. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/IntelliSOFT-Consulting/MamaToTo-FHIR-IG/ and changes regularly. See the Directory of published versions

: Example Teleconsultation Appointment - TTL Representation

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Appointment/ExampleAppointment> a fhir:Appointment ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ExampleAppointment"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://example.org/StructureDefinition/AppointmentProfile" ;
       fhir:index 0 ;
       fhir:link <http://example.org/StructureDefinition/AppointmentProfile>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Appointment ExampleAppointment</b></p><a name=\"ExampleAppointment\"> </a><a name=\"hcExampleAppointment\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-AppointmentProfile.html\">AppointmentProfile</a></p></div><p><b>status</b>: Booked</p><p><b>serviceCategory</b>: <span title=\"Codes:{http://example.org/service-category gp}\">General Practice</span></p><p><b>serviceType</b>: <span title=\"Codes:\">General Discussion</span></p><p><b>specialty</b>: <span title=\"Codes:{http://snomed.info/sct 394814009}\">General practice</span></p><p><b>appointmentType</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v2-0276 FOLLOWUP}\">A follow up visit from a previous appointment</span></p><p><b>priority</b>: 5</p><p><b>description</b>: Teleconsultation</p><p><b>start</b>: 2025-05-30 09:00:00+0300</p><p><b>end</b>: 2025-05-30 09:30:00+0300</p><p><b>created</b>: 2025-05-25 15:28:46+0300</p><p><b>comment</b>: Patient to connect via video link sent to their phone.</p><h3>Participants</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Actor</b></td><td><b>Required</b></td><td><b>Status</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Patient/example\">Patient/example</a></td><td>Required</td><td>Accepted</td></tr></table></div>"
  ] ;
  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:CodeableConcept.text [ fhir:value "General Practice" ]
  ] ;
  fhir:Appointment.serviceType [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.code [ fhir:value "52" ]
     ] ;
     fhir:CodeableConcept.text [ 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:CodeableConcept.text [ 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 "FOLLOWUP" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "A follow up visit from a previous appointment" ]
  ] ;
  fhir:Appointment.priority [ fhir:value "5"^^xsd:nonNegativeInteger] ;
  fhir:Appointment.description [ fhir:value "Teleconsultation"] ;
  fhir:Appointment.start [ fhir:value "2025-05-30T09:00:00+03:00"^^xsd:dateTime] ;
  fhir:Appointment.end [ fhir:value "2025-05-30T09:30:00+03:00"^^xsd:dateTime] ;
  fhir:Appointment.created [ fhir:value "2025-05-25T15:28:46+03:00"^^xsd:dateTime] ;
  fhir:Appointment.comment [ fhir:value "Patient to connect via video link sent to their phone."] ;
  fhir:Appointment.participant [
     fhir:index 0 ;
     fhir:Appointment.participant.actor [
       fhir:link <http://hl7.org/fhir/Patient/example> ;
       fhir:Reference.reference [ fhir:value "Patient/example" ]
     ] ;
     fhir:Appointment.participant.required [ fhir:value "required" ] ;
     fhir:Appointment.participant.status [ fhir:value "accepted" ]
  ] .

<http://hl7.org/fhir/Patient/example> a fhir:Patient .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Appointment/ExampleAppointment.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Appointment/ExampleAppointment.ttl> .