This page is part of the Quality Improvement Core Framework (v7.0.0-ballot: STU7 (v7.0.0) Ballot 1) based on FHIR (HL7® FHIR® Standard) R4. The current version which supersedes this version is 6.0.0. For a full list of available versions, see the Directory of published versions
: Hospital Organization example - TTL Representation
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Organization ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example1"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-organization"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-organization> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Organization example1</b></p><a name=\"example1\"> </a><a name=\"hcexample1\"> </a><a name=\"example1-en-US\"> </a><p><b>identifier</b>: <a href=\"http://terminology.hl7.org/5.5.0/NamingSystem-npi.html\" title=\"National Provider Identifier\">United States National Provider Identifier</a>/1285243618 (use: temp, )</p><p><b>active</b>: true</p><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/organization-type prov}\">Healthcare Provider</span></p><p><b>name</b>: HENDRICKS COUNTY HOSPITAL</p><p><b>telecom</b>: ph: (+1) 712-456-7777, fax: (+1) 712-456-6622, <a href=\"mailto:staff@countyhospital.org\">staff@countyhospital.org</a></p><p><b>address</b>: 3300 Washtenaw Avenue, Suite 227 Avon IN 46123 USA </p></div>"
] ; #
fhir:identifier ( [
fhir:use [ fhir:v "temp" ] ;
fhir:system [ fhir:v "http://hl7.org/fhir/sid/us-npi"^^xsd:anyURI ] ;
fhir:value [ fhir:v "1285243618" ]
] ) ; #
fhir:active [ fhir:v "true"^^xsd:boolean] ; #
fhir:type ( [
( fhir:coding [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/organization-type"^^xsd:anyURI ] ;
fhir:code [ fhir:v "prov" ] ;
fhir:display [ fhir:v "Healthcare Provider" ] ] )
] ) ; #
fhir:name [ fhir:v "HENDRICKS COUNTY HOSPITAL"] ; # Hospital itself
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "(+1) 712-456-7777" ]
] [
fhir:system [ fhir:v "fax" ] ;
fhir:value [ fhir:v "(+1) 712-456-6622" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "staff@countyhospital.org" ]
] ) ; #
fhir:address ( [
( fhir:line [ fhir:v "3300 Washtenaw Avenue, Suite 227" ] ) ;
fhir:city [ fhir:v "Avon" ] ;
fhir:state [ fhir:v "IN" ] ;
fhir:postalCode [ fhir:v "46123" ] ;
fhir:country [ fhir:v "USA" ]
] ) . #