001package org.hl7.fhir.r5.utils.validation.constants;
002
003public enum CodedContentValidationPolicy {
004  /**
005   * don't validate the code
006   */
007  IGNORE,  
008  
009  /**
010   * validate the code against the underlying code systems
011   */
012  CODE,    
013  
014  /**
015   * validate the code against the value set too. 
016   * Note that this isn't much faster than just validating the code since 
017   * the expensive part is hitting the terminology server (if necessary) 
018   * and that has to be done for the code part too
019   */
020  VALUESET //  
021}