Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

FHIR resource link

http://hl7.org/fhir/R4B/servicerequest.html

http://hl7.org/fhir/2022Sep/servicerequest.html

FHIR definition
(edited for PSI)

ServiceRequest represents a proposal or plan or order for a service to be performed that would result in a Procedure or DiagnosticReport

This resource may be used to share relevant information required to support a referral or a transfer of care request from one practitioner or organisation to another. Examples include: (list edited for PSI)

  • counseling

  • surgeries or procedures

  • specialist consultation and assessments

  • other clinical interventions.

The ServiceRequest resource allows requesting only a single procedure. If a workflow requires requesting multiple procedures simultaneously, this is done using multiple instances of this resource.

PSI use case

Use for managing vouchers

FHIR required properties

status, intent, subject.

PSI required properties*

Header: country & psiProjectCode *

identifier - Voucher code

For active and completed status - see below.Required properties

see below

Extensions

Implemented: none

Under consideration:

  • none

Sample payload

(minimum set)

Code Block
languagejson
{
    "resourceType": "ServiceRequest",
    "id": "144235",
    "meta": {
        "versionId": "2",
        "lastUpdated": "2023-07-12T08:12:48.645+00:00",
        "source": "#pOsuiFSdYdvNq6of",
        "profile": [  "SRH_HIV-SWZ"  ]
    },
    "identifier": [
        {
            "system": "http://sample.info/voucher-seq-no",
            "value": "208078"
        }
    ],
    "status": "completed",
    "intent": "proposal",
    "code": {
        "coding": [
            {
                "system": "http://sample.info/voucher-code",
                "code": "059XWB"
            }
        ]
    },
    "occurrenceDateTime": "2023-07-06T10:27:38.883Z",
    "requester": { "reference": "Practitioner/554"  },
    "subject": {  "reference": "Patient/140895"  }
}

Notes for ServiceRequest FHIR resource, per property

...