@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://exchange.example.org/fhir/ig/340b-exchange/Coverage/cov-001> a fhir:Coverage ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "cov-001"] ; # 
  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 cov-001</b></p><a name=\"cov-001\"> </a><a name=\"hccov-001\"> </a><p><b>status</b>: Active</p><p><b>beneficiary</b>: <a href=\"Patient-p-001.html\">Pat Example  (no stated gender), DoB Unknown</a></p><p><b>payor</b>: <a href=\"Organization-manufacturer-77.html\">Organization Example Manufacturer 77</a></p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:beneficiary [
     fhir:l <https://exchange.example.org/fhir/ig/340b-exchange/Patient/p-001> ;
     fhir:reference [ fhir:v "Patient/p-001" ]
  ] ; # 
  fhir:payor ( [
     fhir:l <https://exchange.example.org/fhir/ig/340b-exchange/Organization/manufacturer-77> ;
     fhir:reference [ fhir:v "Organization/manufacturer-77" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

