@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://www.medizininformatik-initiative.de/fhir/ext/modul-mtb/Organization/MyInsurer> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "MyInsurer"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Organization MyInsurer</b></p><a name=\"MyInsurer\"> </a><a name=\"hcMyInsurer\"> </a><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type ins}\">Insurance Company</span></p><p><b>name</b>: Example Health Insurance Co.</p><p><b>address</b>: 789 Insurance Blvd Policytown InsureState 98765 DE </p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/organization-type"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/organization-type>
       ] ;
       fhir:code [ fhir:v "ins" ] ;
       fhir:display [ fhir:v "Insurance Company" ]
     ] )
  ] ) ; # 
  fhir:name [ fhir:v "Example Health Insurance Co."] ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "789 Insurance Blvd" ] ) ;
     fhir:city [ fhir:v "Policytown" ] ;
     fhir:state [ fhir:v "InsureState" ] ;
     fhir:postalCode [ fhir:v "98765" ] ;
     fhir:country [ fhir:v "DE" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

