@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.doh.gov.ph/phcore/Coverage/philhealth-coverage-example> a fhir:Coverage ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "philhealth-coverage-example"] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">PhilHealth coverage for Juan Dela Cruz with member ID 63-584789845-5.</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:subscriber [
     fhir:l <https://fhir.doh.gov.ph/phcore/Patient/patient-single-example> ;
     fhir:reference [ fhir:v "Patient/patient-single-example" ]
  ] ; # 
  fhir:subscriberId [ fhir:v "63-584789845-5"] ; # 
  fhir:beneficiary [
     fhir:l <https://fhir.doh.gov.ph/phcore/Patient/patient-single-example> ;
     fhir:reference [ fhir:v "Patient/patient-single-example" ]
  ] ; # 
  fhir:payor ( [
     fhir:l <https://fhir.doh.gov.ph/phcore/Organization/organization-single-example> ;
     fhir:reference [ fhir:v "Organization/organization-single-example" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

