I have a hosted feature service in AGOL that will be updated via a python script. The data shows building permits for the past couple years and will be updated frequently. The end goal is a dashboard to show current permit status (applied, issued, closed) and how long a permit takes to go from 'applied' to 'approved'. I have four date fields for Applied, Approved, Issued, Finaled. In the data pulled from our permitting system, some of those dates are null (for instance if a permit has been applied for but not yet approved) However, once it gets imported as a gdb table and then transformed to a point layer, those null dates (that I do need to be null so I can see what status a permit should have) default to 12/30/1899. From what I have been reading, this is expected behavior for AGOL date fields. But how do people handle these values? I don't want to display that for citizens who will use the dashboard as that would be confusing. I also can't use my method of calculating permit status (which was going to be checking if certain date fields were null). So how does everyone else handle their date field default values?