I have a list of objects which internally hold types of either A,B or C .It has been declared in the following fashion ``` json "types" : { "type": "array", "minitems":0, "items": { "anyOf": [ { "$ref": "A.json" }, { "$ref": "B.json" }, { "$ref": "C.json" } ] }, "required" : false } ``` This generates a Pojo without the @Valid object ``` java @JsonProperty("experiences") private List<Object> types = new ArrayList<Object>(); ``` Question is would it be possible to add @Valid annotation on the list ?