Page Summary
-
Represents a closed-open time range using a JSON object with
startTimeandendTimefields. -
Both
startTimeandendTimeare represented as strings in RFC3339 UTC "Zulu" format with nanosecond resolution. -
The time range includes the
startTimebut excludes theendTime.
A closed-open time range, i.e. [startTime, endTime).
| JSON representation |
|---|
{ "startTime": string, "endTime": string } |
| Fields | |
|---|---|
startTime |
The lower bound of the time range. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |
endTime |
The upper bound of the time range. Uses RFC 3339, where generated output will always be Z-normalized and use 0, 3, 6 or 9 fractional digits. Offsets other than "Z" are also accepted. Examples: |