yup transform field name in error message code example

Example 1: yup min validation with error message

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

Example 2: yup oneOf

// mixed.oneOf(arrayOfValues: Array<any>, message?: string | function): Schema Alias: equals
// Whitelist a set of values. Values added are automatically removed from any blacklist if they are in it. The ${values} interpolation can be used in the message argument.

// Note that undefined does not fail this validator, even when undefined is not included in arrayOfValues. If you don't want undefined to be a valid value, you can use mixed.required.

let schema = yup.mixed().oneOf(['jimmy', 42]);

await schema.isValid(42); // => true
await schema.isValid('jimmy'); // => true
await schema.isValid(new Date()); // => false