diff options
Diffstat (limited to '52.md')
| -rw-r--r-- | 52.md | 6 |
1 files changed, 2 insertions, 4 deletions
| @@ -95,6 +95,7 @@ Aside from the common tags, this also takes the following tags: | |||
| 95 | * `end` (optional) exclusive end Unix timestamp in seconds. If omitted, the calendar event ends instantaneously. | 95 | * `end` (optional) exclusive end Unix timestamp in seconds. If omitted, the calendar event ends instantaneously. |
| 96 | * `start_tzid` (optional) time zone of the start timestamp, as defined by the IANA Time Zone Database. e.g., `America/Costa_Rica` | 96 | * `start_tzid` (optional) time zone of the start timestamp, as defined by the IANA Time Zone Database. e.g., `America/Costa_Rica` |
| 97 | * `end_tzid` (optional) time zone of the end timestamp, as defined by the IANA Time Zone Database. e.g., `America/Costa_Rica`. If omitted and `start_tzid` is provided, the time zone of the end timestamp is the same as the start timestamp. | 97 | * `end_tzid` (optional) time zone of the end timestamp, as defined by the IANA Time Zone Database. e.g., `America/Costa_Rica`. If omitted and `start_tzid` is provided, the time zone of the end timestamp is the same as the start timestamp. |
| 98 | * `D` (required) the day-granularity unix timestamp on which the event takes place, calculated as `floor(unix_seconds() / seconds_in_one_day)`. Multiple tags SHOULD be included to cover the event's timeframe. | ||
| 98 | 99 | ||
| 99 | ```yaml | 100 | ```yaml |
| 100 | { | 101 | { |
| @@ -113,6 +114,7 @@ Aside from the common tags, this also takes the following tags: | |||
| 113 | // timestamps | 114 | // timestamps |
| 114 | ["start", "<unix timestamp in seconds>"], | 115 | ["start", "<unix timestamp in seconds>"], |
| 115 | ["end", "<unix timestamp in seconds>"], | 116 | ["end", "<unix timestamp in seconds>"], |
| 117 | ["D", "82549"], | ||
| 116 | 118 | ||
| 117 | ["start_tzid", "<IANA Time Zone Database identifier>"], | 119 | ["start_tzid", "<IANA Time Zone Database identifier>"], |
| 118 | ["end_tzid", "<IANA Time Zone Database identifier>"], | 120 | ["end_tzid", "<IANA Time Zone Database identifier>"], |
| @@ -203,10 +205,6 @@ The list of tags is as follows: | |||
| 203 | } | 205 | } |
| 204 | ``` | 206 | ``` |
| 205 | 207 | ||
| 206 | ## Unsolved Limitations | ||
| 207 | |||
| 208 | * No private events | ||
| 209 | |||
| 210 | ## Intentionally Unsupported Scenarios | 208 | ## Intentionally Unsupported Scenarios |
| 211 | 209 | ||
| 212 | ### Recurring Calendar Events | 210 | ### Recurring Calendar Events |