Seam TOD is a standard for accepting and representing the time of day. This repository contains the reference implementation and the specification.
ISO8601/RFC3339 is a standard for representing a point in time. This is an excellent standard, but does not work well for representing recurring daily events such as a meeting that occurs every day at 9am.
The iCal standard is a standard for representing recurring events, but isn't widely an accepted standard for representing simple daily recurring events, most APIs choose to implement something simpler, such as an object like the following:
{
"hour": 9,
"minute": 0,
"timezone": "America/New_York"
}
There is a proposed revision to RFC3339 that would add support for timezone
representations, but it has not yet been adopted. The proposed revision
motivates the syntax of seam-tod
seam-tod
is timezone-aware. Handling time-zone unaware times complicates
syntax and timezones are generally very important when dealing with time of day strings.
The following examples are all valid seam-tod
strings (NOTE: they are not equivalent)
09:00:00-05:00
09:00:00Z
09:00:00[America/Los_Angeles]
The following are NOT valid seam-tod
strings:
09:00:00Z[America/Los_Angeles]
(redundant time offset)09:00:00-08:00[America/Los_Angeles]
(redundant time offset)
All of the following should be accepted and converted into
a seam-tod
string:
{ hour: 9, minute: 0, timezone: "America/New_York" }
9am America/New_York
9am EST
9am EDT
13:00:00 America/New_York
13:00:00[America/New_York]
13:00 EDT
12:00Z
12:00-05:00
9:00[EST]
The following CANNOT be converted to seam-tod
strings:
9am
(ambiguous timezone)13:00
(ambiguous timezone)9amZ
(unusual use case)
- IANA Timezones (America/Los_Angeles)
- NIST Timezones (EST, EDT, UTC)
A Strict Seam TOD Output is a strict output that should be emitted by APIs. There is exactly one Strict Seam TOD Output representation of a timezone time pair. The rules for constructing a Strict Seam TOD Output are as follows:
- Start with
HH:MM:SS.mmm[TIMEZONE]
HH
- hours with0
left pad such that it is exactly two charactersMM
- minutes with0
left pad such that it is exactly two charactersSS
- seconds with0
left pad such that it is exactly two charactersmmm
- milliseconds with0
left pad such that it is exactly three charactersTIMEZONE
- the relevant IANA timezone
- If representing an offset (not a timezone), compute the offset by adjusting for a new
HH
,MM
,SS
andmmm
and set theTIMEZONE
toUTC
- If
mmm
is000
andSS
is00
, removeSS.mmm
- If
SS
is NOT00
andmmm
is000
, remove.mmm
01:23:12.543[PST]
- 1:23am plus 12.543 seconds Pacific Standard Timezone01:23:12[PST]
- 1:23am plus 12 seconds Pacific Standard Timezone01:23[PST]
- 1:23am Pacific Standard Timezone01:00[PST]
- 1am Pacific Standard Timezone