001package org.hl7.fhir.dstu2.utils.validation.constants;
002
003/**
004 * whether the validator should enforce best practice guidelines
005 * as defined by various HL7 committees
006 */
007public enum BestPracticeWarningLevel {
008  Ignore,
009  Hint,
010  Warning,
011  Error
012}