Versions Compared

Key

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

...

Code Block
{
    resourceType: 'ServiceRequest',
    requisition: {
        use: 'official',
        system: 'https://mi211.org',
        value: '1234567',
    },
    status: 'active',
    intent: 'original-order',
    category: [
        {
            coding: [
                {
                    system: 'http://hl7.org/fhir/us/sdoh-clinicalcare/CodeSystem/SDOHCC-CodeSystemTemporaryCodes',
                    code: 'home-visiting',
                    display: 'Home Visiting',
                },
            ],
        },
    ],
    code: {
        coding: [
            {
                system: 'https://211taxonomy.org/',
                code: 'PH-6100.3300',
                display: 'HOME BASED PARENTING EDUCATION',
            },
        ],
    },
    requester: {
        reference: 'Patient/8',
        display: 'Requester Name',
    },
    subject: {
        reference: 'Patient/8',
        display: 'Subject Name',
    },
    reasonReference: [
        {
            reference: 'Observation/2',
            type: 'Observation',
        },
        {
            reference: 'Observation/3',
            type: 'Observation',
        },
        {
            reference: 'Observation/4',
            type: 'Observation',
        },
    ],
    supportingInfo: [
        {
            reference: 'Consent/9',
            type: 'Consent',
        },
    ],
    performer: [
        {
            reference: 'HealthcareService/10',
            type: 'HealthcareService',
        },
        {
            reference: 'HealthcareService/11',
            type: 'HealthcareService',
        },
    ] };

...

Field

Description

References

requisition

This will allow multiple for FHIR Service Requests to be grouped together if they where made

category

This is the category of the request being made.

code

This is a code for the service request that is being requested. This code can be one of the following codes

  • LA211 Taxonomy

  • SNOMED Codes

  • LOINC

requester

This will be a reference to a FHIR patient record id or FHIR organization record id that submitted the FHIR Service Request to the CIE-HUB.

subject

This will be a reference to a FHIR patient record id that Service Request is being requested for to the CIE-HUB.

reasonReference

This is the reason references of the service request. This a list of FHIR observation ids for this service request.

supportingInfo

This will be supporting information about the service request. This will be a reference to a FHIR consent id.

performer

This will a reference to FHIR HealthCareService. Please note that the id passed in matches the id that is in the social services directory.

...