@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://hl7.org/fhir/us/ndh/InsurancePlan/AcmeQHPBronze> a fhir:InsurancePlan ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "AcmeQHPBronze"] ; # 
  fhir:meta [
     fhir:lastUpdated [ fhir:v "2020-07-07T13:26:22.0314215+00:00"^^xsd:dateTime ] ;
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/ndh/StructureDefinition/ndh-InsurancePlan"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/ndh/StructureDefinition/ndh-InsurancePlan>
     ] )
  ] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ]
  ] ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/insurance-product-type"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/insurance-product-type>
       ] ;
       fhir:code [ fhir:v "qhp" ] ;
       fhir:display [ fhir:v "Qualified Health Plan" ]
     ] )
  ] ) ; # 
  fhir:name [ fhir:v "Acme of CT QHP Bronze"] ; # 
  fhir:ownedBy [
     fhir:l <http://hl7.org/fhir/us/ndh/Organization/Acme> ;
     fhir:reference [ fhir:v "Organization/Acme" ]
  ] ; # 
  fhir:administeredBy [
     fhir:l <http://hl7.org/fhir/us/ndh/Organization/Acme> ;
     fhir:reference [ fhir:v "Organization/Acme" ]
  ] ; # 
  fhir:coverageArea ( [
     fhir:l <http://hl7.org/fhir/us/ndh/Location/StateOfCTLocation> ;
     fhir:reference [ fhir:v "Location/StateOfCTLocation" ]
  ] ) ; # 
  fhir:endpoint ( [
     fhir:l <http://hl7.org/fhir/us/ndh/Endpoint/AcmeOfCTPortalEndpoint> ;
     fhir:reference [ fhir:v "Endpoint/AcmeOfCTPortalEndpoint" ]
  ] ) ; # 
  fhir:network ( [
     fhir:l <http://hl7.org/fhir/us/ndh/Organization/AcmeofCTStdNet> ;
     fhir:reference [ fhir:v "Organization/AcmeofCTStdNet" ]
  ] ) ; # 
  fhir:plan ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/insuranceplan-plan-type"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/insuranceplan-plan-type>
         ] ;
         fhir:code [ fhir:v "bronze" ] ;
         fhir:display [ fhir:v "Bronze-QHP" ]
       ] )
     ]
  ] ) . # 

<http://hl7.org/fhir/us/ndh/Organization/Acme> a fhir:Us .

<http://hl7.org/fhir/us/ndh/Location/StateOfCTLocation> a fhir:Us .

<http://hl7.org/fhir/us/ndh/Endpoint/AcmeOfCTPortalEndpoint> a fhir:Us .

<http://hl7.org/fhir/us/ndh/Organization/AcmeofCTStdNet> a fhir:Us .

# -------------------------------------------------------------------------------------

