问题 I would like to create my rule more Generic format which mean it should be validate the fields and values. Following my POJO structure. public class RulesModel private String field; private List<String> values; // other stuff And my rule rule "sample" when $rule : RulesModel( field == "source", values contains "facebook", values contains "youtube", value not contains "instagram" ) then // actions end It's working fine to validate single field, but i want to validate the multiple fields of