Entity: Service Request - itaybraun/FHIR_OS_SampleData GitHub Wiki

Service Request

A record of a request for service such as diagnostic investigations, treatments, or operations to be performed. https://www.hl7.org/fhir/servicerequest.html

ServiceRequest Implementation Guide

Service Request Examples

  • http://loinc.org , 39135-9, Wound Assessment
  • http://loinc.or, 51990-0 , Basic metabolic panel - Blood
  • http://snomed.info/sct, 373784005, Dispensing medication (procedure)
  • SNOMED, 410188000, Taking patient vital signs assessment (procedure)
  • SNOMED, 276272002, Catheter procedure (procedure)
  • 103715008, Removal of catheter (procedure)
  • 698507004, Insertion of feeding tube into small intestine (procedure)
  • Encounter - when creating the SR, usually there is no encounter yet.

JSON - ServiceRequest

{ "resourceType": "ServiceRequest",

"status": "active",
"intent": "original-order",
"code": {
  "coding": [
    {
      "system": "http://loinc.org",
      "code": "51990-0"
    }
  ],
  "text": "Basic metabolic panel - Blood"
},
"subject": {
  "reference": "Patient/a96c50a3-fddc-451a-93b7-be3b7f129fc8"
},
"occurrenceDateTime": "2020-02-13T09:33:27+07:00",
"requester": {
  "reference": "Practitioner/87d80d38-8d50-46b8-8066-1af447ff4383",
  "display": "Dr. Adam Careful"
},
"performer": [
    {
      "reference": "Practitioner/8cba6c16-4f07-42de-9b06-b5af4f05f23c"
    }
  ],
"reasonCode": [
  {
    "text": "A family member reported the patient very week in the last few days"
  }
]

}