Data Quality
Learn how to use sling for data quality
Constraints
streams:
my_stream:
columns:
# Ensure email is valid
email: string | value ~ '^[^@]+@[^@]+\.[^@]+$'
# Status can only be specific values
status: string | value in ('active', 'pending', 'inactive')
# Amount must be positive
amount: decimal | value > 0Check Hooks
3. Query Hooks
Failure Handling
Last updated
Was this helpful?