public static IEnumerable <string> ReturnInferredEasyRules(IEnumerable <string> jsonObjects, InferenceType inferenceType = InferenceType.Pessimistic)
        {
            var evaluator = new JsonEasyRuleEvaluator();

            return(evaluator.InferEasyRules(jsonObjects, inferenceType));
        }