JSCalendar: A JSON representation of calendar data
draft-ietf-calext-jscalendar-27
|
| Document |
Type |
|
Active Internet-Draft (calext WG)
|
|
Last updated |
|
2020-06-14
|
|
Replaces |
|
draft-jenkins-jscalendar
|
|
Stream |
|
IETF
|
|
Intended RFC status |
|
Proposed Standard
|
|
Formats |
|
plain text
xml
pdf
htmlized (tools)
htmlized
bibtex
|
|
Reviews |
|
|
| Stream |
WG state
|
|
Submitted to IESG for Publication
(wg milestone:
Aug 2020 - Send JSCalendar draf...
)
|
|
Document shepherd |
|
Daniel Migault
|
|
Shepherd write-up |
|
Show
(last changed 2020-02-18)
|
| IESG |
IESG state |
|
Waiting for AD Go-Ahead::AD Followup
|
|
Consensus Boilerplate |
|
Yes
|
|
Telechat date |
|
|
|
Responsible AD |
|
Barry Leiba
|
|
Send notices to |
|
Daniel Migault <daniel.migault@ericsson.com>
|
| IANA |
IANA review state |
|
Version Changed - Review Needed
|
Calendaring extensions N. Jenkins
Internet-Draft R. Stepanek
Intended status: Standards Track Fastmail
Expires: December 17, 2020 June 15, 2020
JSCalendar: A JSON representation of calendar data
draft-ietf-calext-jscalendar-27
Abstract
This specification defines a data model and JSON representation of
calendar data that can be used for storage and data exchange in a
calendaring and scheduling environment. It aims to be an alternative
and, over time, successor to the widely deployed iCalendar data
format, and to be unambiguous, extendable, and simple to process. In
contrast to the jCal format, which is also JSON-based, JSCalendar is
not a direct mapping from iCalendar, but defines the data model
independently and expands semantics where appropriate.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at https://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on December 17, 2020.
Copyright Notice
Copyright (c) 2020 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(https://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
Jenkins & Stepanek Expires December 17, 2020 [Page 1]
Internet-Draft JSCalendar June 2020
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 4
1.1. Motivation and Relation to iCalendar and jCal . . . . . . 5
1.2. Notational Conventions . . . . . . . . . . . . . . . . . 6
1.3. Type Signatures . . . . . . . . . . . . . . . . . . . . . 6
1.4. Data Types . . . . . . . . . . . . . . . . . . . . . . . 7
1.4.1. Int . . . . . . . . . . . . . . . . . . . . . . . . . 7
1.4.2. UnsignedInt . . . . . . . . . . . . . . . . . . . . . 7
1.4.3. UTCDateTime . . . . . . . . . . . . . . . . . . . . . 7
1.4.4. LocalDateTime . . . . . . . . . . . . . . . . . . . . 7
1.4.5. Duration . . . . . . . . . . . . . . . . . . . . . . 8
1.4.6. SignedDuration . . . . . . . . . . . . . . . . . . . 8
1.4.7. Id . . . . . . . . . . . . . . . . . . . . . . . . . 8
1.4.8. PatchObject . . . . . . . . . . . . . . . . . . . . . 9
1.4.9. Time Zones . . . . . . . . . . . . . . . . . . . . . 9
1.4.10. Relation . . . . . . . . . . . . . . . . . . . . . . 10
2. JSCalendar Objects . . . . . . . . . . . . . . . . . . . . . 10
2.1. JSEvent . . . . . . . . . . . . . . . . . . . . . . . . . 10
2.2. JSTask . . . . . . . . . . . . . . . . . . . . . . . . . 11
2.3. JSGroup . . . . . . . . . . . . . . . . . . . . . . . . . 11
3. Structure of JSCalendar Objects . . . . . . . . . . . . . . . 11
3.1. Normalization and Equivalence . . . . . . . . . . . . . . 11
3.2. Vendor-specific Property Extensions and Values . . . . . 12
4. Common JSCalendar Properties . . . . . . . . . . . . . . . . 12
4.1. Metadata Properties . . . . . . . . . . . . . . . . . . . 12
4.1.1. @type . . . . . . . . . . . . . . . . . . . . . . . . 12
4.1.2. uid . . . . . . . . . . . . . . . . . . . . . . . . . 13
4.1.3. relatedTo . . . . . . . . . . . . . . . . . . . . . . 13
4.1.4. prodId . . . . . . . . . . . . . . . . . . . . . . . 13
4.1.5. created . . . . . . . . . . . . . . . . . . . . . . . 14
4.1.6. updated . . . . . . . . . . . . . . . . . . . . . . . 14
4.1.7. sequence . . . . . . . . . . . . . . . . . . . . . . 14
4.1.8. method . . . . . . . . . . . . . . . . . . . . . . . 14
4.2. What and Where Properties . . . . . . . . . . . . . . . . 14
4.2.1. title . . . . . . . . . . . . . . . . . . . . . . . . 14
Show full document text