// min and max Yup.object().shape({ temperature: Yup.number() .min(0, 'Min value 0.') .max(30, 'Max value 30.'), })