Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 9 Next »

The following is a description of a Service Request that can be submitted to the Community of Information Exchange. For detailed information please visit the HL7 FHIR page https://hl7.org/fhir/us/sdoh-clinicalcare/2022jan/StructureDefinition-SDOHCC-ServiceRequest-definitions.html

Operations

The following are operations that can be performed and links to

  • Submit a new FHIR service request

  • Get a FHIR service request by service request id

  • Change the status of a FHIR service request

Sample Object

{
    resourceType: 'ServiceRequest',
    requisition: {
        use: 'official',
        system: 'https://mi211.org',
        value: '1234567',
    },
    status: 'active',
    intent: 'original-order',
    authoredOn: '2023-08-29T13:56:14.173Z',
    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',
    },
    supportingInfo: [
        {
            reference: 'Consent/9',
            type: 'Consent',
        },
    ],
    performer: [
        {
            reference: 'HealthcareService/10',
            type: 'HealthcareService',
        },
        {
            reference: 'HealthcareService/11',
            type: 'HealthcareService',
        },
    ],
    extension: [
        {
            url: "https://mi-cie.org/fhir/StructureDefinition/agencyLocation",
            valueString: "name_of_location_here"
        }
    ]
 };

Field Descriptions

The following are descriptions of the fields that must be passed into the service request object.

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.

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.

status

The status can be any of the f

  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.