I have a dataset with a column that I always expect to have the same value. It indicates a data schema version, so I know I am deserialising my data correctly. How can I ensure I am alerted if there is a value with a different schema version?
| data | version |
|---|---|
| {"key":"value"} | 1 |
| {"key":"value2"} | 1 |
(if there is a row where version != 1, I want to alert)