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