@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/example1> a fhir:InsuranceProduct ;
  fhir:resourceDefinition http://hl7.org/fhir/StructureDefinition/InsuranceProduct|0.1.0 ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example1"] ; # 
  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			Health Level Seven International Staff 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.1" ]
  ] ) ; # 
  fhir:name [ fhir:v "Health Level Seven International Staff Plan"] ; #  HL7 itself 
  fhir:alias ( [ fhir:v "HL7 International"] ) ; # 
  fhir:period [
     fhir:start [ fhir:v "2017-01-01"^^xsd:date ]
  ] ; # 
  fhir:ownedBy [
     fhir:l <http://hl7.org/fhir/uv/admin-incubator/Organization/hl7> ;
     fhir:reference [ fhir:v "Organization/hl7" ] ;
     fhir:display [ fhir:v "Health Level Seven International" ]
  ] ; # 
  fhir:administeredBy [
     fhir:l <http://hl7.org/fhir/uv/admin-incubator/Organization/hl7> ;
     fhir:reference [ fhir:v "Organization/hl7" ] ;
     fhir:display [ fhir:v "Health Level Seven International" ]
  ] ; # 
  fhir:contact ( [
     fhir:address [
       fhir:line ( [ fhir:v "3300 Washtenaw Avenue, Suite 227" ] ) ;
       fhir:city [ fhir:v "Ann Arbor" ] ;
       fhir:state [ fhir:v "MI" ] ;
       fhir:postalCode [ fhir:v "48104" ] ;
       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 "USSS Enterprise-D" ]
  ] ) ; # 
  fhir:coverage ( [
     fhir:type [
       fhir:text [ fhir:v "Substance Abuse" ]
     ] ;
     fhir:benefit ( [
       fhir:type [
         fhir:text [ fhir:v "Primary Care" ]
       ] ;
       fhir:limit ( [
         fhir:value [
           fhir:value [ fhir:v 450.23 ] ;
           fhir:unit [ fhir:v "USD" ]
         ] ;
         fhir:code [
           fhir:text [ fhir:v "day" ]
         ]
       ] )
     ] )
  ] ) ; # 
  fhir:endpoint ( [
     fhir:l <http://hl7.org/fhir/uv/admin-incubator/Endpoint/example> ;
     fhir:reference [ fhir:v "Endpoint/example" ] #  Endpoint that handles the v2 messaging for the external organization 
  ] ) . # 

<http://hl7.org/fhir/uv/admin-incubator/Organization/hl7> 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 .

# -------------------------------------------------------------------------------------

