This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example Organization/f002 (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Real-world organization example (Burgers MC Cardiology)
@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 "f002"] ; #
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 "dept" ] ;
fhir:display [ fhir:v "Hospital Department" ]
] )
] ) ; #
fhir:name [ fhir:v "Burgers UMC Cardiology unit"] ; #
fhir:contact ( [
fhir:purpose [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/contactentity-type"^^xsd:anyURI ] ;
fhir:code [ fhir:v "ADMIN" ]
] )
] ;
fhir:name ( [
fhir:text [ fhir:v "mevr. D. de Haan" ]
] ) ;
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "022-655 2321" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "cardio@burgersumc.nl" ]
] [
fhir:system [ fhir:v "fax" ] ;
fhir:value [ fhir:v "022-655 2322" ]
] ) ;
fhir:address [
fhir:line ( [ fhir:v "South Wing, floor 2" ] )
]
] ) ; #
fhir:partOf [
fhir:reference [ fhir:v "Organization/f001" ]
]] . #
# -------------------------------------------------------------------------------------
Usage note: every effort has been made to ensure that the
examples are correct and useful, but they are not a normative part
of the specification.