/** * @name ObservationStatus * @description Codes providing the status of an observation. * @description registered | preliminary | final | amended | corrected | cancelled | entered-in-error | unknown * @see ObservationStatus * @version R4 * @author Claudia Alarcón Lazo */ export type ObservationStatusType = 'registered' | 'preliminary' | 'final' | 'amended' | 'corrected' | 'cancelled' | 'entered-in-error' | 'unknown';