As a user of @ScriptAssert and @ParameterScriptAssert, I'd like to be able to override the target property/parameter of the constraint violation message, without having to implement a custom constraint validator:
@ScriptAssert(lang="javascript", script = "_this.end > _this.start", reportOn="end")
publicclass Interval {
int start;
int end;
}