FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example DeviceRequest/wheelchair-request (Turtle)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Encounter, Group, Patient, Practitioner

Raw Turtle (+ also see Turtle/RDF Format Specification)

Standard wheelchair request

@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/DeviceRequest/wheelchair-request> a fhir:DeviceRequest ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "wheelchair-request"] ; # 
  fhir:identifier ( [
     fhir:value [ fhir:v "wheelchair_request.1" ]
  ] ) ; # 
  fhir:status [ fhir:v "active"] ; # 
  fhir:intent [ fhir:v "order"] ; # 
  fhir:priority [ fhir:v "routine"] ; # 
  fhir:product [
     fhir:concept [
       fhir:coding ( [
         fhir:system [ fhir:v "http://www.cms.gov/Medicare/Coding/HCPCSReleaseCodeSets"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "K0001" ]
       ] ) ;
       fhir:text [ fhir:v "Standard wheelchair" ]
     ]
  ] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/Patient/bob> ;
     fhir:reference [ fhir:v "Patient/bob" ]
  ] ; # 
  fhir:occurrence [
     a fhir:Period ;
     fhir:start [ fhir:v "2025-05-01"^^xsd:date ] ;
     fhir:end [ fhir:v "2025-07-06"^^xsd:date ]
  ] ; # 
  fhir:authoredOn [ fhir:v "2025-05-01T09:33:27+07:00"^^xsd:dateTime] ; # 
  fhir:requester [
     fhir:link <http://hl7.org/fhir/Practitioner/example> ;
     fhir:reference [ fhir:v "Practitioner/example" ] ;
     fhir:display [ fhir:v "Dr. Adam Careful" ]
  ] ; # 
  fhir:reason ( [
     fhir:concept [
       fhir:coding ( [
         a sct:11865081000119107 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "11865081000119107" ]
       ] ) ;
       fhir:text [ fhir:v "Injury of left leg" ]
     ]
  ] ) ; # 
  fhir:insurance ( [
     fhir:link <http://hl7.org/fhir/Coverage/primiary-insurance> ;
     fhir:reference [ fhir:v "Coverage/primiary-insurance" ] ;
     fhir:display [ fhir:v "Blue Cross Blue Shield" ]
  ] ) ; # 
  fhir:location ( [
     fhir:concept [
       fhir:coding ( [
         fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-RoleCode"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "PTRES" ]
       ] ) ;
       fhir:text [ fhir:v "Patient's Residence" ]
     ]
  ] ) ; # 
  fhir:supportingInfo ( [
     fhir:link <http://hl7.org/fhir/Observation/cognitive-status-observation> ;
     fhir:reference [ fhir:v "Observation/cognitive-status-observation" ]
  ] ) ; # 
  fhir:note ( [
     fhir:text [ fhir:v "Patient has a broken left fibula and requires a wheelchair to move about their home while immobilizing the leg during recovery. Because the patient is a fall risk, as indicated after a cognitive assessment was completed, other mobility devices are not appropriate. A home assessment has been completed and the patient will be able to use the wheelchair without home modifications" ]
  ] ) . # 

<http://hl7.org/fhir/Patient/bob> a fhir:Patient .

<http://hl7.org/fhir/Practitioner/example> a fhir:Practitioner .

<http://hl7.org/fhir/Coverage/primiary-insurance> a fhir:Coverage .

<http://hl7.org/fhir/Observation/cognitive-status-observation> a fhir:Observation .

# -------------------------------------------------------------------------------------


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.