This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example Location/1 (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Wing within a hospital
@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:Location ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "1"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Burgers UMC, South Wing, second floor</div>"
] ; #
fhir:identifier ( [
fhir:value [ fhir:v "B1-S.F2" ]
] ) ; #
fhir:status [ fhir:v "active"] ; #
fhir:name [ fhir:v "South Wing, second floor"] ; #
fhir:alias ( [ fhir:v "BU MC, SW, F2"] [ fhir:v "Burgers University Medical Center, South Wing, second floor"] ) ; #
fhir:description [ fhir:v "Second floor of the Old South Wing, formerly in use by Psychiatry"] ; #
fhir:mode [ fhir:v "instance"] ; #
fhir:contact ( [
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "2328" ] ;
fhir:use [ fhir:v "work" ]
] [
fhir:system [ fhir:v "fax" ] ;
fhir:value [ fhir:v "2329" ] ;
fhir:use [ fhir:v "work" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "second wing admissions" ]
] )
] [
fhir:telecom ( [
fhir:system [ fhir:v "url" ] ;
fhir:value [ fhir:v "http://sampleorg.com/southwing" ] ;
fhir:use [ fhir:v "work" ]
] )
] ) ; #
fhir:address [
fhir:use [ fhir:v "work" ] ;
fhir:line ( [ fhir:v "Galapagosweg 91, Building A" ] ) ;
fhir:city [ fhir:v "Den Burg" ] ;
fhir:postalCode [ fhir:v "9105 PZ" ] ;
fhir:country [ fhir:v "NLD" ]
] ; #
fhir:form [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/location-physical-type"^^xsd:anyURI ] ;
fhir:code [ fhir:v "wi" ] ;
fhir:display [ fhir:v "Wing" ]
] )
] ; #
fhir:position [
fhir:longitude [ fhir:v "-83.6945691"^^xsd:decimal ] ;
fhir:latitude [ fhir:v "42.25475478"^^xsd:decimal ] ;
fhir:altitude [ fhir:v "0"^^xsd:decimal ]
] ; #
fhir:managingOrganization [
fhir:reference [ fhir:v "Organization/f001" ]
] ; #
fhir:characteristic ( [
fhir:coding ( [
fhir:system [ fhir:v "http://hl7.org/fhir/location-characteristic"^^xsd:anyURI ] ;
fhir:code [ fhir:v "wheelchair" ] ;
fhir:display [ fhir:v "Wheelchair accessible" ]
] )
] ) ; #
fhir:endpoint ( [
fhir:reference [ fhir:v "Endpoint/example" ]
] )] . #
# -------------------------------------------------------------------------------------
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.