UNPKG

fhirtypes

Version:
10 lines (9 loc) 503 B
/** * @name ObservationStatus * @description Codes providing the status of an observation. * @description registered | preliminary | final | amended | corrected | cancelled | entered-in-error | unknown * @see <a href="https://hl7.org/fhir/R4/valueset-observation-status.html">ObservationStatus</a> * @version R4 * @author Claudia Alarcón Lazo */ export type ObservationStatusType = 'registered' | 'preliminary' | 'final' | 'amended' | 'corrected' | 'cancelled' | 'entered-in-error' | 'unknown';