@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 xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://hl7.cz/fhir/core/Appointment/AppointmentExample> a fhir:Appointment ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "AppointmentExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://hl7.cz/fhir/core/StructureDefinition/appointment-cz-core" ;
       fhir:index -1 ;
       fhir:link <https://hl7.cz/fhir/core/StructureDefinition/appointment-cz-core>
     ]
  ] ;
  fhir:Resource.language [ fhir:value "en"] ;
  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 AppointmentExample</b></p><a name=\"AppointmentExample\"> </a><a name=\"hcAppointmentExample\"> </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-appointment-cz-core.html\">Appointment (CZ Core)</a></p></div><p><b>status</b>: Booked</p><p><b>description</b>: Pravidelná kontrola</p><p><b>start</b>: 2025-06-01 07:00:00+0200</p><p><b>end</b>: 2025-06-01 07:30:00+0200</p><p><b>minutesDuration</b>: 30</p><p><b>created</b>: 2025-05-27</p><p><b>patientInstruction</b>: Nalačno</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=\"Location-LocationExample.html\">Ordinace - Jankovcova 2</a></td><td>Required</td><td>Accepted</td></tr></table></div>"
  ] ;
  fhir:Appointment.status [ fhir:value "booked"] ;
  fhir:Appointment.description [ fhir:value "Pravidelná kontrola"] ;
  fhir:Appointment.start [ fhir:value "2025-06-01T07:00:00+02:00"^^xsd:dateTime] ;
  fhir:Appointment.end [ fhir:value "2025-06-01T07:30:00+02:00"^^xsd:dateTime] ;
  fhir:Appointment.minutesDuration [ fhir:value "30"^^xsd:positiveInteger] ;
  fhir:Appointment.created [ fhir:value "2025-05-27"^^xsd:date] ;
  fhir:Appointment.patientInstruction [ fhir:value "Nalačno"] ;
  fhir:Appointment.participant [
     fhir:index -1 ;
     fhir:Appointment.participant.actor [
       fhir:link <https://hl7.cz/fhir/core/Location/LocationExample> ;
       fhir:Reference.reference [ fhir:value "Location/LocationExample" ] ;
       fhir:Reference.display [ fhir:value "Ordinace - Jankovcova 2" ]
     ] ;
     fhir:Appointment.participant.required [ fhir:value "required" ] ;
     fhir:Appointment.participant.status [ fhir:value "accepted" ]
  ] .

# - ontology header ------------------------------------------------------------

<https://hl7.cz/fhir/core/Appointment/AppointmentExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

