Oh I got solution for this already, my problem wasn't AJV validation at all, my mistake was using a select option with a value = "", this will made the Select element required by Html.
<select>
<option value = ""> option 0 </option>
<---- this will make select tag required.
<select>
Can I apply the required attribute to <select> fields in HTML?