@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://gematik.de/fhir/hddt/Organization/example-cgm-manufacturer> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example-cgm-manufacturer"] ; # 
  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 example-cgm-manufacturer</b></p><a name=\"example-cgm-manufacturer\"> </a><a name=\"hcexample-cgm-manufacturer\"> </a><p><b>type</b>: <span title=\"Codes:{https://fhir.bfarm.de/CodeSystem/HiisManufacturerType legal}\">Legal Entity</span></p><p><b>name</b>: rtCGM Manufacturer Inc.</p><p><b>telecom</b>: <a href=\"mailto:info@rtcgm-manufacturer.com\">info@rtcgm-manufacturer.com</a></p><p><b>address</b>: CGM Technology Park 15 Munich 80331 DE </p><h3>Contacts</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Name</b></td><td><b>Telecom</b></td></tr><tr><td style=\"display: none\">*</td><td>Maria Sensor </td><td><a href=\"tel:+49-89-9876543\">+49-89-9876543</a></td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:type ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "https://fhir.bfarm.de/CodeSystem/HiisManufacturerType"^^xsd:anyURI ;
         fhir:l <https://fhir.bfarm.de/CodeSystem/HiisManufacturerType>
       ] ;
       fhir:code [ fhir:v "legal" ] ;
       fhir:display [ fhir:v "Legal Entity" ]
     ] )
  ] ) ; # 
  fhir:name [ fhir:v "rtCGM Manufacturer Inc."] ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "email" ] ;
     fhir:value [ fhir:v "info@rtcgm-manufacturer.com" ]
  ] ) ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "CGM Technology Park 15" ] ) ;
     fhir:city [ fhir:v "Munich" ] ;
     fhir:postalCode [ fhir:v "80331" ] ;
     fhir:country [ fhir:v "DE" ]
  ] ) ; # 
  fhir:contact ( [
     fhir:name [
       fhir:family [ fhir:v "Sensor" ] ;
       fhir:given ( [ fhir:v "Maria" ] )
     ] ;
     fhir:telecom ( [
       fhir:system [ fhir:v "phone" ] ;
       fhir:value [ fhir:v "+49-89-9876543" ]
     ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

