Common Mapping Rules
const itemTypeValue =
"itemType" in rowData.modifications
? rowData.modifications.itemType
: rowData.cells.itemType;
if (itemTypeValue === pm.secondaryAccessor.split(".")[0] && s === "") {
return { message: "Value must not be empty" };
}Last updated