Column Warning
How it Works
Two Types of Validations
Validation Type
Behaviour
Visual Indicator
Key Benefits
Implementation Guide
Basic Structure
const axios = require('axios');
exports.code = async (params) => {
const result = [];
// Loop through each item in the dataset
for (const item of params.data) {
result.push({
index: item.index,
warnings: {
Country: 'Please specify your country',
},
});
}
return result;
};;

Last updated
Was this helpful?