UNPKG

fhirtypes

Version:
10 lines (9 loc) 359 B
/** * @name RequestPriority * @description The clinical priority of a diagnostic order. * @description routine | urgent | asap | stat * @see <a href="https://hl7.org/fhir/R4/valueset-request-priority.html">RequestPriority</a> * @version R4 * @author Roberto Araneda Espinoza */ export type RequestPriorityType = 'routine' | 'urgent' | 'asap' | 'stat';