1.19 Minor Age Validation

Minor Age Validation through validation allows specific minor age criteria using rule framework. This configuration is critical in scenarios, where minor age is determined based on state level age limits for minors.

For more information on validation model, refer to the Common Core User Guide.

Use “OBPYVMMINOR” as validation model code for configuring rules for minor age criteria based on states. The below is a sample rule to identify minor age based on states as “MS”, “AL, and “AE”.

if( ( STATE == MS ) && ( AGE < 21 ) ) elseif ( ( STATE IN [AL,NE] ) && ( AGE < 19 ) ) elseif ( ( STATE NOTIN [AL,NE,MS] ) && ( AGE < 18 ) )

output

Section1 True

Section2 True

Section3 True