Administrative Incubator
0.1.0 - STU 1 World

Administrative Incubator, published by HL7 International / Patient Administration. This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/admin-incubator/ and changes regularly. See the Directory of published versions

: Health Level Seven International Staff Plan

Raw ttl | Download


@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/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: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/Organization/hl7> ;
     fhir:reference [ fhir:v "Organization/hl7" ] ;
     fhir:display [ fhir:v "Health Level Seven International" ]
  ] ; # 
  fhir:administeredBy [
     fhir:l <http://hl7.org/fhir/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/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/Endpoint/example> ;
     fhir:reference [ fhir:v "Endpoint/example" ] # Endpoint that handles the v2 messaging for the external organization
  ] ) . # 

<http://hl7.org/fhir/Organization/hl7> a fhir:Organization .

<http://hl7.org/fhir/Location/2> a fhir:Location .

<http://hl7.org/fhir/Endpoint/example> a fhir:Endpoint .