@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://fhir.cognovis.de/praxis/Account/ExampleAccountKfo> a fhir:Account ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleAccountKfo"] ; # 
  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: Account ExampleAccountKfo</b></p><a name=\"ExampleAccountKfo\"> </a><a name=\"hcExampleAccountKfo\"> </a><p><b>status</b>: Active</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-ActCode PBILLACCT}\">patient billing account</span></p><p><b>subject</b>: <a href=\"Patient-ExamplePatientKfo.html\">Anna Mueller (official) Female, DoB: 1990-03-22</a></p><blockquote><p><b>coverage</b></p><p><b>coverage</b>: <a href=\"Coverage-ExampleCoverageGkvKfo.html\">Coverage: extension = Bayern (KBV_CS_SFHIR_ITA_WOP#71); identifier = Gesetzliche Krankenversicherung; status = active; type = gesetzliche Krankenversicherung</a></p><p><b>priority</b>: 1</p></blockquote><blockquote><p><b>coverage</b></p><p><b>coverage</b>: <a href=\"Coverage-ExampleCoveragePkvZusatzKfo.html\">Coverage: status = active; type = private Krankenversicherung</a></p><p><b>priority</b>: 2</p></blockquote></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:type [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActCode"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/v3-ActCode>
       ] ;
       fhir:code [ fhir:v "PBILLACCT" ] ;
       fhir:display [ fhir:v "patient billing account" ]
     ] )
  ] ; # 
  fhir:subject ( [
     fhir:l <https://fhir.cognovis.de/praxis/Patient/ExamplePatientKfo> ;
     fhir:reference [ fhir:v "Patient/ExamplePatientKfo" ]
  ] ) ; # 
  fhir:coverage ( [
     fhir:coverage [
       fhir:l <https://fhir.cognovis.de/praxis/Coverage/ExampleCoverageGkvKfo> ;
       fhir:reference [ fhir:v "Coverage/ExampleCoverageGkvKfo" ]
     ] ;
     fhir:priority [ fhir:v "1"^^xsd:positiveInteger ]
  ] [
     fhir:coverage [
       fhir:l <https://fhir.cognovis.de/praxis/Coverage/ExampleCoveragePkvZusatzKfo> ;
       fhir:reference [ fhir:v "Coverage/ExampleCoveragePkvZusatzKfo" ]
     ] ;
     fhir:priority [ fhir:v "2"^^xsd:positiveInteger ]
  ] ) . # 

# -------------------------------------------------------------------------------------

