Date and time format
Timestamps are formatted according to ISO 8601, a widely accepted standard for representing date and time information in a consistent manner. For instance:
2023-12-28T08:36:52.440Z
In this format:
2023-12-28represents the date (year-month-day)Tseparates the date from the time08:36:52.440represents the time (hour:minute:second.millisecond)Zindicates that the time is in UTC (Coordinated Universal Time)
Last updated