This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example DeviceDefinition/example (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
General DeviceDefinition example
@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/DeviceDefinition/example> a fhir:DeviceDefinition ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example"] ; #
fhir:extension ( [
fhir:url [
fhir:v "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/StructureDefinition/structuredefinition-wg>
] ;
fhir:value [
a fhir:Code ;
fhir:v "oo"
]
] ) ; #
fhir:identifier ( [
fhir:value [ fhir:v "0" ]
] ) ; #
fhir:status [ fhir:v "draft"] ; #
fhir:contact ( [
fhir:telecom ( [
fhir:system [ fhir:v "url" ] ;
fhir:value [ fhir:v "http://www.hl7.org/Special/committees/orders" ]
] )
] ) ; #
fhir:deviceName ( [
fhir:name [ fhir:v "Example Device Name" ] ;
fhir:type [
fhir:coding ( [
fhir:system [
fhir:v "http://hl7.org/fhir/device-nametype"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/device-nametype>
] ;
fhir:code [ fhir:v "registered-name" ]
] )
]
] ) ; #
fhir:version [] ; #
fhir:deviceVersion ( [
fhir:type [
fhir:coding ( [
fhir:system [
fhir:v "http://hl7.org/fhir/device-version-type"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/device-version-type>
] ;
fhir:code [ fhir:v "hardware" ]
] )
] ;
fhir:value [ fhir:v "v1.2.3" ]
] ) ; #
fhir:url [
fhir:v "http://example.org/fhir/DeviceDefinition/exampleDevice"^^xsd:anyURI ;
fhir:l <http://example.org/fhir/DeviceDefinition/exampleDevice>
] ; #
fhir:hasPart ( [
fhir:reference [
fhir:v "http://example.org/fhir/DeviceDefinition/example-prodspec"^^xsd:anyURI ;
fhir:l <http://example.org/fhir/DeviceDefinition/example-prodspec>
]
] ) ; #
fhir:manufacturer [
fhir:l <http://hl7.org/fhir/Organization/example> ;
fhir:reference [ fhir:v "Organization/example" ]
] ; #
fhir:modelNumber [ fhir:v "Model123"] ; #
fhir:partNumber [ fhir:v "Part456"] ; #
fhir:publisher [ fhir:v "HL7 International / Orders and Observations"] ; #
fhir:conformsTo ( [
fhir:specification [
fhir:coding ( [
fhir:system [
fhir:v "urn:iso:std:iso:11073:10101"^^xsd:anyURI ;
fhir:l <urn:iso:std:iso:11073:10101>
] ;
fhir:code [ fhir:v "528388" ] ;
fhir:display [ fhir:v "MDC_DEV_SPEC_PROFILE_PULS_OXIM" ]
] )
] ;
fhir:version ( [ fhir:v "3.0" ] ) ;
fhir:category [
fhir:coding ( [
fhir:system [
fhir:v "http://hl7.org/fhir/device-specification-category"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/device-specification-category>
] ;
fhir:code [ fhir:v "exchange" ]
] )
]
] ) . #
<http://hl7.org/fhir/Organization/example> a fhir:Organization .
# -------------------------------------------------------------------------------------
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.