@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://secondary-use-ig.cumuluz.dev/ig/Group/CohortGroupExample> a fhir:Group ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "CohortGroupExample"] ;
  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>Gegenereerde narrative: Group CohortGroupExample</b></p><a name=\"CohortGroupExample\"> </a><a name=\"hcCohortGroupExample\"> </a><p><b>type</b>: Person</p><p><b>actual</b>: true</p><p><b>quantity</b>: 2</p><blockquote><p><b>member</b></p><p><b>entity</b>: <a href=\"Patient/patient-001\">Patient/patient-001</a></p></blockquote><blockquote><p><b>member</b></p><p><b>entity</b>: <a href=\"Patient/patient-002\">Patient/patient-002</a></p></blockquote></div>"
  ] ;
  fhir:Group.type [ fhir:value "person"] ;
  fhir:Group.actual [ fhir:value "true"^^xsd:boolean] ;
  fhir:Group.quantity [ fhir:value "2"^^xsd:nonNegativeInteger] ;
  fhir:Group.member [
     fhir:index 0 ;
     fhir:Group.member.entity [
       fhir:link <https://secondary-use-ig.cumuluz.dev/ig/Patient/patient-001> ;
       fhir:Reference.reference [ fhir:value "Patient/patient-001" ]
     ]
  ], [
     fhir:index 1 ;
     fhir:Group.member.entity [
       fhir:link <https://secondary-use-ig.cumuluz.dev/ig/Patient/patient-002> ;
       fhir:Reference.reference [ fhir:value "Patient/patient-002" ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<https://secondary-use-ig.cumuluz.dev/ig/Group/CohortGroupExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

