@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/us/core/Organization/holy-healthcare> a fhir:Organization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "holy-healthcare"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization|9.0.0"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization?version=9.0.0>
     ] )
  ] ; # 
  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 holy-healthcare</b></p><a name=\"holy-healthcare\"> </a><a name=\"hcholy-healthcare\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-us-core-organization.html\">US Core Organization Profile</a> version: 9.0.0</p></div><p><b>identifier</b>: <a href=\"http://terminology.hl7.org/6.5.0/NamingSystem-npi.html\" title=\"National Provider Identifier\">United States National Provider Identifier</a>/1234567893</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Provider</span></p><p><b>name</b>: Holy Healthcare</p><p><b>telecom</b>: ph: (+1) 555-555-5555, <a href=\"mailto:hq@holyhealthcare.org\">hq@holyhealthcare.org</a></p><p><b>address</b>: 100 MANAGING ORGANIZATION AVE Amherst MA 01002 USA </p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/sid/us-npi>
     ] ;
     fhir:value [ fhir:v "1234567893" ]
  ] ) ; # 
  fhir:active [ fhir:v true] ; # 
  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 "prov" ]
     ] ) ;
     fhir:text [ fhir:v "Provider" ]
  ] ) ; # 
  fhir:name [ fhir:v "Holy Healthcare"] ; # 
  fhir:telecom ( [
     fhir:system [ fhir:v "phone" ] ;
     fhir:value [ fhir:v "(+1) 555-555-5555" ]
  ] [
     fhir:system [ fhir:v "email" ] ;
     fhir:value [ fhir:v "hq@holyhealthcare.org" ]
  ] ) ; # 
  fhir:address ( [
     fhir:line ( [ fhir:v "100 MANAGING ORGANIZATION AVE" ] ) ;
     fhir:city [ fhir:v "Amherst" ] ;
     fhir:state [ fhir:v "MA" ] ;
     fhir:postalCode [ fhir:v "01002" ] ;
     fhir:country [ fhir:v "USA" ]
  ] ) . # 

# -------------------------------------------------------------------------------------

