Is it possible to validate the following rule? `a string value needs to be in a given list of strings` val validNames = listOf("a", "b", "c") val validUser = User(name = "a") val invalidUser = User(name = "x")