UNPKG

fhirtypes

Version:
10 lines (9 loc) 364 B
/** * @name PublicationStatus * @description The lifecycle status of an artifact. * @description draft | active | retired | unknown * @see <a href="https://hl7.org/fhir/R4/valueset-publication-status.html">PublicationStatus</a> * @version R4 * @author Claudia Alarcón Lazo */ export type PublicationStatusType = 'draft' | 'active' | 'retired' | 'unknown';