Transient Objects (MVO, FVO) should not initialise ArrayLists in constructor
e.g. private List scheduleDefinition = new ArrayList<>(); should be private List scheduleDefinition = null;
e.g. private List scheduleDefinition = new ArrayList<>(); should be private List scheduleDefinition = null;