Level 51
Create your own custom validation.
Hi, I'm using Nova and trying to validate emails array, there should be no repeating values for active emails of one type (e.g from this array only second should be invalid )
{
"type": "work",
"status": "Active",
"email": "[email protected]"
},
{
"type": "work",
"status": "Active",
"email": "[email protected]"
},
{
"type": "personal",
"status": "Active",
"email": "[email protected]"
},
{
"type": "personal",
"status": "Inactive",
"email": "[email protected]"
}
]
Did anyone face issues like that?
Please or to participate in this conversation.