@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/uv/admin-incubator/InsuranceProduct/example-onc> a fhir:InsuranceProduct ;
  fhir:resourceDefinition http://hl7.org/fhir/StructureDefinition/InsuranceProduct|0.1.0 ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-onc"] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n			Sample Plan\n        </div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "urn:ietf:rfc:3986"^^xsd:anyURI ;
       fhir:l <urn:ietf:rfc:3986>
     ] ;
     fhir:value [ fhir:v "urn:oid:2.16.840.1.113883.4.642.33.3" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:name [ fhir:v "Sample Plan"] ; # 
  fhir:alias ( [ fhir:v "PPO Sample Plan"] ) ; # 
  fhir:period [
     fhir:start [ fhir:v "2017-01-01"^^xsd:date ]
  ] ; # 
  fhir:ownedBy [
     fhir:l <http://hl7.org/fhir/uv/admin-incubator/Organization/Test> ;
     fhir:reference [ fhir:v "Organization/Test" ] ;
     fhir:display [ fhir:v "Test" ]
  ] ; # 
  fhir:administeredBy [
     fhir:l <http://hl7.org/fhir/uv/admin-incubator/Organization/Test> ;
     fhir:reference [ fhir:v "Organization/Test" ] ;
     fhir:display [ fhir:v "Test" ]
  ] ; # 
  fhir:contact ( [
     fhir:address [
       fhir:line ( [ fhir:v "123 Fake Street" ] ) ;
       fhir:city [ fhir:v "Washington" ] ;
       fhir:state [ fhir:v "DC" ] ;
       fhir:postalCode [ fhir:v "20005" ] ;
       fhir:country [ fhir:v "USA" ]
     ]
  ] ) ; # 
  fhir:coverageArea ( [
     fhir:l <http://hl7.org/fhir/uv/admin-incubator/Location/2> ;
     fhir:reference [ fhir:v "Location/2" ] ;
     fhir:display [ fhir:v "National" ]
  ] ) ; # 
  fhir:coverage ( [
     fhir:type [
       fhir:text [ fhir:v "Medical" ]
     ] ;
     fhir:benefit ( [
       fhir:type [
         fhir:text [ fhir:v "Diagnostic and treatment services" ]
       ] ;
       fhir:limit ( [
         fhir:code [
           fhir:text [ fhir:v "primary care visit" ]
         ]
       ] [
         fhir:code [
           fhir:text [ fhir:v "specialty care visit" ]
         ]
       ] )
     ] )
  ] ) ; # 
  fhir:endpoint ( [
     fhir:l <http://hl7.org/fhir/uv/admin-incubator/Endpoint/example> ;
     fhir:reference [ fhir:v "Endpoint/example" ]
  ] ) . # 

<http://hl7.org/fhir/uv/admin-incubator/Organization/Test> a fhir:Uv .

<http://hl7.org/fhir/uv/admin-incubator/Location/2> a fhir:Uv .

<http://hl7.org/fhir/uv/admin-incubator/Endpoint/example> a fhir:Uv .

# -------------------------------------------------------------------------------------

