Evaluate Job
Validations Performed
Common Regex Examples
Example: Custom Function
def validate_complex_data(data):
# Check if data is a string
if not isinstance(data, str):
return False
# Check length (assuming hash length of 64 characters)
if len(data) != 64:
return False
import re
# Validate hexadecimal format
hex_pattern = re.compile(r'^[0-9a-fA-F]{64}$')
if not hex_pattern.match(data):
return False
return TrueExample: Lambda Function
How to Create an Evaluate Job
Last updated