@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/apix/Organization/org-synthpharma-ag> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "org-synthpharma-ag"] ; # 
  fhir:language [ fhir:v "en"] ; # 
  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 org-synthpharma-ag</b></p><a name=\"org-synthpharma-ag\"> </a><a name=\"hcorg-synthpharma-ag\"> </a><p><b>name</b>: SynthPharma AG</p><h3>Contacts</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Name</b></td><td><b>Telecom</b></td><td><b>Address</b></td></tr><tr><td style=\"display: none\">*</td><td>Dr. John Doe, Head of Regulatory Affairs</td><td><a href=\"mailto:john.doe@synthpharma.example\">john.doe@synthpharma.example</a></td><td>123 Synthetic Research Blvd, 4000 Basel, Switzerland</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:name [ fhir:v "SynthPharma AG"] ; # 
  fhir:contact ( [
     fhir:name ( [
       fhir:text [ fhir:v "Dr. John Doe, Head of Regulatory Affairs" ]
     ] ) ;
     fhir:telecom ( [
       fhir:system [ fhir:v "email" ] ;
       fhir:value [ fhir:v "john.doe@synthpharma.example" ] ;
       fhir:use [ fhir:v "work" ]
     ] ) ;
     fhir:address [
       fhir:type [ fhir:v "physical" ] ;
       fhir:text [ fhir:v "123 Synthetic Research Blvd, 4000 Basel, Switzerland" ] ;
       fhir:line ( [ fhir:v "123 Synthetic Research Blvd" ] ) ;
       fhir:city [ fhir:v "Basel" ] ;
       fhir:district [ fhir:v "Basel-Stadt" ] ;
       fhir:state [ fhir:v "Basel-Stadt" ] ;
       fhir:postalCode [ fhir:v "4000" ] ;
       fhir:country [ fhir:v "Switzerland" ]
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

