Page Summary
-
The JSON schema represents a date object.
-
The
datefield is a string that adheres to the ISO 8601 extended format for date and time. -
The
datefield can include an offset to specify the time zone, or it can be omitted for local time representation. -
Providing an offset ensures the
daterepresents a specific instant in time globally, while omitting it makes it a local time subject to user time zones.
| JSON representation |
|---|
{ "date" : string } |
| Fields | |
|---|---|
date
|
An ISO 8601 extended format date/time. Offset may or may not be required (refer to the parent field's documentation). Time may be specified up to nanosecond precision. Offsets may be specified with seconds precision (even though offset seconds is not part of ISO 8601). For example: Providing an offset makes this an absolute instant in time around the world. The date/time will be adjusted based on the user's time zone. For example, a time of Omitting the offset makes this a local date/time, representing several instants in time around the world. The date/time will always be in the user's current time zone. For example, a time of |


