FHIR Procedure

The following is a description of a Procedure that can be submitted to the Community of Information Exchange. This will represent interventions (term used by the gravity project https://confluence.hl7.org/display/GRAV/The+Gravity+Project ) that are given to the person. For detailed information please visit the HL7 FHIR page https://www.hl7.org/fhir/R4/procedure.html

Operations

The following are operations that can be performed and links to

Sample Procedure Object

export const testProcedure: Procedure = { resourceType: 'Procedure', identifier: [ { use: 'official', system: 'organization.com', value: '123413', } ], status: 'completed', category: { coding: [ { system: 'http://snomed.info/sct', code: '410606002', display: 'Social service procedure', }, { system: 'http://snomed.info/sct', code: '713458007', display: 'Transportation insecurity', }, ], }, code: { coding: [ { code: 'IS-13', system: 'http://thegravityproject.net', display: 'Provision of transportation support', }, ], }, subject: { reference: 'Patient/8', display: 'Test Patient', }, performedDateTime: '', note: [ { time: 'YYYY-MM-DDThh:mm:ss+zz:zz', text: 'Sample Text', }, ], performer: [ { actor: { reference: 'Organization/1', type: 'Organization', }, }, ], };  

Field Descriptions

The following are descriptions of the most important values that must be passed

Field

Description

References

Field

Description

References

 identifier

This will be any custom client identifiers that can be passed to the CIE for reporting and also link to patient id.

 https://www.hl7.org/fhir/R4/procedure-definitions.html#Procedure.identifier

 category

This is a array of coded classifications on the procedure that is being performed.

 

code

This is a code on what procedure was given to the patient.

subject

This is the patient identifier which the procedure

 

note

Any notes that will be passed on the procedure

performer

This is the organization that has provided the procedure.