@BinaryAlchemy11 By default, AEM does not provide an option to store a date in the format of "YYYY/MM/DD" as a "Date" data type. However, you can achieve this by writting a custom code to change the format
private Date date;
@ValueMapValue(name = "date")
private String dateString;
Simpl...