@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 -------------------------------------------------------------------

<http://fhir.ehdsi.eu/imaging/Coverage/ExampleCoverageImg> a fhir:Coverage ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleCoverageImg"] ; # 
  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: Coverage ExampleCoverageImg</b></p><a name=\"ExampleCoverageImg\"> </a><a name=\"hcExampleCoverageImg\"> </a><p><b>status</b>: Active</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-ActCode EHCPOL}\">extended healthcare</span></p><p><b>policyHolder</b>: <a href=\"Organization-PolicyHolderOrg.html\">Organization Health Insure Corp</a></p><p><b>subscriber</b>: <a href=\"Patient-SubscriberPatient.html\">John Doe  Male, DoB: 1980-05-15</a></p><p><b>beneficiary</b>: <a href=\"Patient-BeneficiaryPatient.html\">John Doe  Male, DoB: 1980-05-15</a></p><p><b>period</b>: 2023-01-01 --&gt; 2025-01-01</p><p><b>payor</b>: <a href=\"Organization-PayorOrg.html\">Organization Imaging Coverage Payor</a></p><p><b>contract</b>: <a href=\"Contract-ImagingContract.html\">Contract</a></p></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 "EHCPOL" ] ;
       fhir:display [ fhir:v "extended healthcare" ]
     ] )
  ] ; # 
  fhir:policyHolder [
     fhir:l <http://fhir.ehdsi.eu/imaging/Organization/PolicyHolderOrg> ;
     fhir:reference [ fhir:v "Organization/PolicyHolderOrg" ]
  ] ; # 
  fhir:subscriber [
     fhir:l <http://fhir.ehdsi.eu/imaging/Patient/SubscriberPatient> ;
     fhir:reference [ fhir:v "Patient/SubscriberPatient" ]
  ] ; # 
  fhir:beneficiary [
     fhir:l <http://fhir.ehdsi.eu/imaging/Patient/BeneficiaryPatient> ;
     fhir:reference [ fhir:v "Patient/BeneficiaryPatient" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2023-01-01"^^xsd:date ] ;
     fhir:end [ fhir:v "2025-01-01"^^xsd:date ]
  ] ; # 
  fhir:payor ( [
     fhir:l <http://fhir.ehdsi.eu/imaging/Organization/PayorOrg> ;
     fhir:reference [ fhir:v "Organization/PayorOrg" ]
  ] ) ; # 
  fhir:contract ( [
     fhir:l <http://fhir.ehdsi.eu/imaging/Contract/ImagingContract> ;
     fhir:reference [ fhir:v "Contract/ImagingContract" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

