@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://eahp-official.github.io/EAHP_Interoperabillty/Location/loc-ward-cardio> a fhir:Location ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "loc-ward-cardio"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Location loc-ward-cardio</b></p><a name=\"loc-ward-cardio\"> </a><a name=\"hcloc-ward-cardio\"> </a><p><b>status</b>: Active</p><p><b>name</b>: Cardiology Ward North</p><p><b>mode</b>: Instance</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-RoleCode CARD}\">Cardiology clinic</span></p><p><b>form</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/location-physical-type wa}\">Ward</span></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:name [ fhir:v "Cardiology Ward North"] ; # 
  fhir:mode [ fhir:v "instance"] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/v3-RoleCode>
       ] ;
       fhir:code [ fhir:v "CARD" ] ;
       fhir:display [ fhir:v "Cardiology clinic" ]
     ] )
  ] ) ; # 
  fhir:form [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/location-physical-type"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/location-physical-type>
       ] ;
       fhir:code [ fhir:v "wa" ] ;
       fhir:display [ fhir:v "Ward" ]
     ] )
  ] . # 

# -------------------------------------------------------------------------------------

