aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/docs/caldav-notifications.txt
blob: 75c2e5e073272bc55ea212182004ec6f2a728dbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
Calendar Server Extension                                       C. Daboo
                                                              Apple Inc.
                                                          March 19, 2012


                  CalDAV: Calendar User Notifications

Abstract

   This specification defines an extension to CalDAV that allows the
   server to provide notifications to calendar users.








































Daboo                                                           [Page 1]

                        CalDAV User Notifications             March 2012


Table of Contents

   1.  Introduction . . . . . . . . . . . . . . . . . . . . . . . . .  3
   2.  Open Issues  . . . . . . . . . . . . . . . . . . . . . . . . .  3
   3.  Conventions Used in This Document  . . . . . . . . . . . . . .  3
   4.  Notifications  . . . . . . . . . . . . . . . . . . . . . . . .  3
     4.1.  Additional Principal Properties  . . . . . . . . . . . . .  4
       4.1.1.  CS:notification-URL Property . . . . . . . . . . . . .  5
     4.2.  Properties on Notification Resources . . . . . . . . . . .  5
       4.2.1.  CS:notificationtype Property . . . . . . . . . . . . .  5
     4.3.  XML Element Definitions  . . . . . . . . . . . . . . . . .  6
       4.3.1.  CS:notifications . . . . . . . . . . . . . . . . . . .  6
       4.3.2.  CS:notification  . . . . . . . . . . . . . . . . . . .  6
       4.3.3.  CS:dtstamp . . . . . . . . . . . . . . . . . . . . . .  7
   5.  Notification Definitions . . . . . . . . . . . . . . . . . . .  7
     5.1.  System Status Notification . . . . . . . . . . . . . . . .  7
       5.1.1.  CS:systemstatus Element Definition . . . . . . . . . .  8
     5.2.  Quota Notification . . . . . . . . . . . . . . . . . . . .  8
       5.2.1.  CS:quotastatus Element Definition  . . . . . . . . . .  9
     5.3.  Resource Changes Notification  . . . . . . . . . . . . . . 10
       5.3.1.  CS:resource-change Element Definition  . . . . . . . . 11
       5.3.2.  CS:calendar-changes Element Definition . . . . . . . . 15
         5.3.2.1.  Handling Recurrences in CS:calendar-changes  . . . 17
       5.3.3.  CS:deleted-details Element Definition  . . . . . . . . 18
       5.3.4.  CS:notify-changes Property . . . . . . . . . . . . . . 20
   6.  Security Considerations  . . . . . . . . . . . . . . . . . . . 20
   7.  IANA Considerations  . . . . . . . . . . . . . . . . . . . . . 21
   8.  Acknowledgments  . . . . . . . . . . . . . . . . . . . . . . . 21
   9.  References . . . . . . . . . . . . . . . . . . . . . . . . . . 21
     9.1.  Normative References . . . . . . . . . . . . . . . . . . . 21
     9.2.  Informative References . . . . . . . . . . . . . . . . . . 21
   Appendix A.  Examples  . . . . . . . . . . . . . . . . . . . . . . 21
     A.1.  Resource Created . . . . . . . . . . . . . . . . . . . . . 21
     A.2.  Resource Updated - Property Change . . . . . . . . . . . . 22
     A.3.  Resource Updated - Parameter Change  . . . . . . . . . . . 23
     A.4.  Resource Updated - Multiple Instances Change . . . . . . . 23
     A.5.  Resource Updated - Multiple User Change  . . . . . . . . . 24
     A.6.  Resource Deleted . . . . . . . . . . . . . . . . . . . . . 25
     A.7.  Collection Created . . . . . . . . . . . . . . . . . . . . 26
     A.8.  Collection Updated . . . . . . . . . . . . . . . . . . . . 26
     A.9.  Collection Deleted . . . . . . . . . . . . . . . . . . . . 27
   Author's Address . . . . . . . . . . . . . . . . . . . . . . . . . 27









Daboo                                                           [Page 2]

                        CalDAV User Notifications             March 2012


1.  Introduction

   CalDAV [RFC4791] provides a way for calendar users to store calendar
   data and exchange this data via scheduling operations.  Based on the
   WebDAV [RFC4918] protocol, it also includes the ability to manage
   access to calendar data via the WebDAV ACL [RFC3744] extension.

   It is often useful for servers to communicate arbitrary information
   to calendar users, e.g., system status, message of the day, quota
   warnings, changes to shared resources made by others etc.  This
   specification defines a generic "notification" mechanism that allows
   a server to do that.  Whilst primarily aimed at CalDAV [RFC4791],
   this mechanism has been designed to be adaptable to WebDAV [RFC4918].


2.  Open Issues

   1.  Define specific child elements for system status notification,
       e.g. "server-maintenance-period", "server-read-only-period",
       "client-upgrade-required".


3.  Conventions Used in This Document

   The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
   "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
   document are to be interpreted as described in [RFC2119].

   When XML element types in the namespaces "DAV:" and
   "urn:ietf:params:xml:ns:caldav" are referenced in this document
   outside of the context of an XML fragment, the string "DAV:" and
   "CALDAV:" will be prefixed to the element type names respectively.

   The namespace "http://calendarserver.org/ns/" is used for XML
   elements defined in this specification.  When XML element types in
   that namespace are referenced in this document outside of the context
   of an XML fragment, the string "CS:" will be prefixed to the element
   type names.


4.  Notifications

   When this feature is available, a CS:notification-URL (Section 4.1.1)
   property appears on principal resources for those principals who are
   able to receive notifications.  That property specifies a single DAV:
   href element whose content refers to a WebDAV collection resource.
   Notification "messages" are deposited into this collection and can be
   retrieved by clients and acted on accordingly.



Daboo                                                           [Page 3]

                        CalDAV User Notifications             March 2012


   The notification collection referenced by the CS:notification-URL
   (Section 4.1.1) property MUST have a DAV:resourcetype property with
   DAV:collection and CS:notifications (Section 4.3.1) child elements.

   Notification "messages" are XML documents stored as resources in the
   notification collection.  Each XML document contains a CS:
   notification (Section 4.3.2) element as its root.  The root element
   contains a CS:dtstamp element, and one additional element which
   represents the type of notification being conveyed in the message.
   That child element will typically contain additional content that
   describes the notification.

   Each notification resource has a CS:notificationtype (Section 4.2.1)
   property which contains as its single child element an empty element
   that matches the child element of the notification resource XML
   document root.  Any attributes on the child element in the XML
   document are also present in the property child element.

   Notifications are automatically generated by the server (perhaps in
   response to a action) with an appropriate resource stored in the
   notifications collection of the user to whom the notification is
   targeted.  Clients SHOULD monitor the notification collection looking
   for new notification resources.  When doing so, clients SHOULD look
   at the CS:notificationtype (Section 4.2.1) property to ensure that
   the notification is of a type that the client can handle.  Once a
   client has handled the notification in whatever way is appropriate it
   SHOULD delete the notification resource.  Clients SHOULD remove
   notifications being displayed to a user when the notification
   resource is removed from the notification collection, to enable the
   user to dismiss a notification on one device and have it
   automatically removed from others.  Clients MUST ignore all
   notifications for types they do not recognize.  Servers MAY delete
   notification resources on their own if they determine that the
   notifications are no longer relevant or valid.  Servers MAY coalesce
   notifications as appropriate.

   Servers MUST prevent clients from adding resources in the
   notification collection.

4.1.  Additional Principal Properties

   This section defines new properties for WebDAV principal resources as
   defined in RFC3744 [RFC3744].  These properties are likely to be
   protected but the server MAY allow them to be written by appropriate
   users.






Daboo                                                           [Page 4]

                        CalDAV User Notifications             March 2012


4.1.1.  CS:notification-URL Property

   Name:  notification-URL

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Identify the URL of the notification collection owned by
      the associated principal resource.

   Protected:  This property SHOULD be protected.

   PROPFIND behavior:  This property SHOULD NOT be returned by a
      PROPFIND allprop request (as defined in Section 14.2 of
      [RFC4918]).

   COPY/MOVE behavior:  This property value SHOULD be preserved in COPY
      and MOVE operations.

   Description:  This property is needed for a client to determine where
      the notification collection of the current user is located so that
      processing of notification messages can occur.  If not present,
      then the associated calendar user is not enabled for notification
      messages on the server.

   Definition:

   <!ELEMENT notification-URL (DAV:href)>

4.2.  Properties on Notification Resources

   The following new WebDAV properties are defined for notification
   resources.

4.2.1.  CS:notificationtype Property

   Name:  notificationtype

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Identify the type of notification of the corresponding
      resource.

   Protected:  This property MUST be protected.

   PROPFIND behavior:  This property SHOULD NOT be returned by a
      PROPFIND allprop request (as defined in Section 14.2 of
      [RFC4918]).




Daboo                                                           [Page 5]

                        CalDAV User Notifications             March 2012


   COPY/MOVE behavior:  This property value MUST be preserved in COPY
      and MOVE operations.

   Description:  This property allows a client, via a PROPFIND Depth:1
      request, to quickly find notification messages that the client can
      handle in a notification collection.  The single child element is
      the notification resource root element's child defining the
      notification itself.  This element MUST be empty, though any
      attributes on the element in the notification resource MUST be
      present in the property element.

   Definition:

   <!ELEMENT notificationtype ANY>
   <!-- Child elements are empty but will have appropriate attributes.
        Any valid notification message child element can appear.-->

4.3.  XML Element Definitions

4.3.1.  CS:notifications

   Name:  notifications

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Indicates a notification collection.

   Description:  This XML element is used in a DAV:resourcetype element
      to indicate that the corresponding resource is a notification
      collection.

   Definition:

   <!ELEMENT notifications EMPTY>

4.3.2.  CS:notification

   Name:  notification

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Notification message root element.

   Description:  The root element used in notification resources.







Daboo                                                           [Page 6]

                        CalDAV User Notifications             March 2012


   Definition:

   <!ELEMENT notification (dtstamp, XXX) >
   <!-- Any notification type element can appear after
        CS:dtstamp -->

4.3.3.  CS:dtstamp

   Name:  dtstamp

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Date-time stamp.

   Description:  Contains the date-time stamp corresponding to the
      creation of a notification message, using the format defined in
      [RFC3339], or the "compact" format without "-" and ":" characters
      between date and time elements, respectively.

   Definition:

   <!ELEMENT dtstamp (#PCDATA)>
   <!-- Value is a date-time in UTZ as per [RFC3339] with
        "compact" format allowed.-->


5.  Notification Definitions

   This section defines a set of common notification types.

5.1.  System Status Notification

   The system status notification is used to convey a URI and/or textual
   description to the user.  The assumption is that the URI points to a
   webpage where current system status is described in detail, with the
   provided description being a summary of that.  A "type" attribute on
   the element is used to indicate the importance of the current status
   notification, and has the values "low", "medium" and "high",
   representing the increasing level of importance of the message
   respectively.

   Servers might have knowledge of specific calendar user language
   preferences, in which case it MAY localise the CS:description value
   as appropriate based on the calendar user accessing the notification,
   but if it does, it SHOULD include an xml:lang attribute on the CS:
   description element to indicate what language is being used.





Daboo                                                           [Page 7]

                        CalDAV User Notifications             March 2012


5.1.1.  CS:systemstatus Element Definition

   Name:  systemstatus

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Indicates a system status notification.

   Description:  This XML element is used in a CS:notification element
      to describe a system status notification.

   Definition:

   <!ELEMENT systemstatus (DAV:href?, CS:description?)>
   <!ATTLIST systemstatus type (low | medium | high) "low">

     <!ELEMENT description CDATA>

   <!-- One of DAV:href of CS:description MUST be present -->

   Example:  This is an example of the body of a notification resource
      for an emergency system outage:

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:12:53-05:00</CS:dtstamp>
     <CS:systemstatus type="high">
       <D:href>http://example.com/emergency_shutdown.html</D:href>
       <CS:description xml:lang='en_US'
       >Emergency shutdown now</CS:description>
     </CS:systemstatus>
   </CS:notification>

   Example:  This is an example of the WebDAV property on the example
      notification resource above:

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notificationtype xmlns:D="DAV:"
                        xmlns:CS="http://calendarserver.org/ns/">
     <CS:systemstatus type="high" />
   </CS:notificationtype>

5.2.  Quota Notification

   The quota notification is used to convey information about the status
   of one or more quotas for the user.  The notification contains
   elements for different types of quota being reported to the user.  In



Daboo                                                           [Page 8]

                        CalDAV User Notifications             March 2012


   some cases these may be warnings (e.g., a user getting to 80% of
   their quota limit), or in other cases errors (e.g., a user exceeding
   their quota).

5.2.1.  CS:quotastatus Element Definition

   Name:  quotastatus

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Indicates a quota status notification.

   Description:  This XML element is used in a CS:notification element
      to describe a quota status notification.  The CS:quota-percent-
      used element contains an integer greater than or equal to zero.
      If the value is greater than or equal to 100, then the user's
      quota has been reached or exceeded.  The DAV:href element contains
      a URI for a webpage where the user can go to get further
      information about their quota status or take corrective action.

   Definition:

   <!ELEMENT quota-status (quota+)>

     <!ELEMENT quota (quota-type, quota-percent-used?,
                      quota-count?, DAV:href?)>
     <!ATTLIST quota type (warning | exceeded) "exceeded">

     <!ELEMENT quota-type ANY>
     <!-- Child elements are application specific -->

     <!ELEMENT quota-percent-used CDATA>
     <!-- Integer value greater than or equal to zero -->

     <!ELEMENT quota-count CDATA>
     <!-- Integer value greater than or equal to zero -->

   Example:  This is an example of the body of a notification resource
      for a quota warning:












Daboo                                                           [Page 9]

                        CalDAV User Notifications             March 2012


   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:12:53-05:00</CS:dtstamp>
     <CS:quota-status>
       <CS:quota type="warning">
         <CS:quota-type><CS:attachments /></CS:quota-type>
         <CS:quota-percent-used>80</CS:quota-percent-used>
         <D:href>https://example.com/your-account.html</D:href>
       </CS:quota>
     </CS:quota-status>
   </CS:notification>

   Example:  This is an example of the body of a notification resource
      for a quota that has been exceeded, and a count-based limit that
      is shown as a warning:

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:12:53-05:00</CS:dtstamp>
     <CS:quota-status>
       <CS:quota type="exceeded">
         <CS:quota-type><CS:attachments /></CS:quota-type>
         <CS:quota-percent-used>102</CS:quota-percent-used>
         <D:href>https://example.com/fix-account.html</D:href>
       </CS:quota>
       <CS:quota type="warning">
         <CS:quota-type><CS:events /></CS:quota-type>
         <CS:quota-percent-used>82</CS:quota-percent-used>
         <CS:quota-count>4980</CS:quota-count>
         <D:href>https://example.com/buy-more-space.html</D:href>
       </CS:quota>
     </CS:quota-status>
   </CS:notification>

5.3.  Resource Changes Notification

   The resource change notification is used to inform the user of new,
   updated or deleted resources caused by changes made by someone else
   (note: servers MUST NOT generate notifications to users for changes
   they themselves make, though the possibility of an automated process
   acting on behalf of a user needs to be considered).  This
   notification can be used by clients to show changes that a user can
   acknowledge in their own time.  When the notification is present, it
   can be displayed on all devices a user is accessing their data from.
   When the user acknowledges and dismisses the notification on one
   device, other devices SHOULD also remove the notification when they



Daboo                                                          [Page 10]

                        CalDAV User Notifications             March 2012


   next synchronize the notification collection.

   A new WebDAV property CS:notify-changes (Section 5.3.4) is defined
   for calendar collections.  This allows users to enable or disable the
   sending of resource change notifications for the calendar and its
   child resources.  Servers MUST allow users to set this property on a
   per-user basis on any calendars accessible to them.  Servers MUST
   honor the chosen setting to enable or disable change notifications.

   Servers can send notifications for calendar object resources, and
   ones for calendar collections.  Servers SHOULD coalesce notifications
   that refer to the same resource into a single notification resource,
   containing multiple CS:created, CS:updated or CS:deleted elements all
   with the same DAV:href child element value.  Servers MAY coalesce
   changes to multiple resources into a change notification for the
   parent collection of those resources and use a CS:collection-changes
   element to indicate the number of individual resources that changed.

5.3.1.  CS:resource-change Element Definition

   Name:  resource-change

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Indicates that resources have been created, updated or
      deleted.

   Description:  This XML element is used in a CS:notification element
      to describe a resource change notification.  It can describe a
      change directly to a calendar object resource or to a calendar
      collection.

      When used for a calendar object resource change, it can contain
      one of the CS:created, or CS:deleted elements, or multiple CS:
      updated elements, which indicate a created, deleted or updated
      resource, respectively.  The DAV:href element within those
      elements, contains the URI of the changed resource, optional
      information about who changed the resource and when that change
      was made (the CS:changed-by element), and information specific to
      the nature of the change.  Servers SHOULD coalesce resource change
      notifications for the same resource into a single notification
      resource where possible.  The CS:updated element optionally
      contains CS:content and/or DAV:prop elements to indicate a change
      to the body of the resource or resource WebDAV properties,
      respectively.  The DAV:prop element MAY contain a list of property
      elements to indicate which properties changed.  The CS:updated
      element can also contain zero or more CS:calendar-changes elements
      to list details of the changes.  If no CS:calendar-changes element



Daboo                                                          [Page 11]

                        CalDAV User Notifications             March 2012


      is present, the specific details are not provided, and clients
      will need to assume that some set of changes occurred, but the
      server is unwilling to disclose the full details.  The CS:deleted
      element can also contain zero or more CS:deleted-details elements
      to list details of the deleted resource.

      When used for a calendar collection change, it can contain a CS:
      collection-changes element.  The DAV:href element within that
      element, contains the URI of the changed calendar collection.  The
      DAV:prop element indicates a change to WebDAV properties on the
      calendar collection resource.  The CS:child-created, CS:child-
      updated, and CS:child-deleted elements each contain a positive
      integer value indicating how many child resources were added,
      updated or deleted in the collection, respectively.

   Definition:



































Daboo                                                          [Page 12]

                        CalDAV User Notifications             March 2012


   <!ELEMENT resource-change (created | updated+ | deleted |
                              collection-changes)>
     <!ELEMENT created (DAV:href, changed-by?, ANY)>
     <!ELEMENT updated (DAV:href, changed-by?, content?,
                        DAV:prop?, calendar-changes*)>
       <!ELEMENT content EMPTY>
     <!ELEMENT deleted (DAV:href, changed-by?, deleted-details)>

     <!ELEMENT changed-by (common-name | (first-name, last-name),
                           dtstamp?, DAV:href)>
       <!ELEMENT common-name CDATA>
       <!ELEMENT first-name CDATA>
       <!ELEMENT last-name CDATA>
     <!-- CS:changed-by indicates who made the change that caused the
          notification. CS:first-name and CS:last-name are the first
          and last names of the corresponding user. or the
          CS:common-name is the overall display name. CS:dtstamp is the
          time in UTC when the change was made. The DAV:href element
          is the principal URI or email address of the user who made
          the change. -->

     <!ELEMENT collection-changes (DAV:href, changed-by*, DAV:prop?,
                                   child-created?, child-updated?,
                                   child-deleted?>
       <!-- When coalescing changes from multiple users, the changed-by
            element can appear more than once. -->

       <!ELEMENT child-created CDATA>
       <!ELEMENT child-updated CDATA>
       <!ELEMENT child-deleted CDATA>
       <!-- Each of the three elements above MUST contain a positive,
            non-zero integer value indicate the total number of changes
            being reported for the collection. -->

   Example:  This is an example of the body of a notification resource
      for changes where one resource has been created:















Daboo                                                          [Page 13]

                        CalDAV User Notifications             March 2012


   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:created>
         <D:href>http://example.com/cyrus/calendar/new.ics</D:href>
         <CS:changed-by>
           <CS:common-name>Cyrus Daboo</CS:common-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
       </CS:created>
     </CS:resource-change>
   </CS:notification>

   Example:  This is an example of the body of a notification resource
      for changes where a resource has been updated twice.  One of the
      updated resources elements contains additional information
      indicating which recurrence instances in the iCalendar data were
      changed:

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:updated>
         <D:href>http://example.com/cyrus/calendar/event.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Oliver</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>mailto:oliver@example.com</D:href>
         </CS:changed-by>
       </CS:updated>
       <CS:updated>
         <D:href>http://example.com/cyrus/calendar/event.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Eleanor</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>mailto:eleanor@example.com</D:href>
         </CS:changed-by>
       </CS:updated>
     </CS:resource-change>
   </CS:notification>







Daboo                                                          [Page 14]

                        CalDAV User Notifications             March 2012


   Example:  This is an example of the body of a notification resource
      for changes where one resource has been deleted:

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:deleted>
         <D:href>http://example.com/cyrus/calendar/old.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
       </CS:deleted>
     </CS:resource-change>
   </CS:notification>

   Example:  This example is the same as the previous three, except that
      all the individual resource changes have been coalesced into a
      single notification about changes to the parent calendar
      collection:

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:collection-changes>
         <D:href>http://example.com/cyrus/calendar/</D:href>
         <CS:child-created>1</CS:child-created>
         <CS:child-updated>2</CS:child-updated>
         <CS:child-deleted>1</CS:child-deleted>
       </CS:collection-changes>
     </CS:resource-change>
   </CS:notification>

5.3.2.  CS:calendar-changes Element Definition

   Name:  calendar-changes

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Indicates which portions of an calendar object resource
      have changed, or provides details of deleted calendar object
      resources.




Daboo                                                          [Page 15]

                        CalDAV User Notifications             March 2012


   Description:  This XML element is used in a CS:updated element to
      describe how a calendar object resource changed, or in a CS:
      deleted element to provide details of a deleted resource.  It can
      identify the master instance, or individual recurrence instances,
      and for each indicate which iCalendar properties and parameters
      changed during the update for which the notification was
      generated.  For details of handling recurrences please see
      Section 5.3.2.1.

   Definition:

   <!ELEMENT calendar-changes (recurrence+) >

     <!ELEMENT recurrence
         ((master | recurrenceid), added?, removed?, changes?)>
     <!-- Which instances were affected by the change,
          and details on the per-instance changes -->

       <!ELEMENT master EMPTY>
       <!-- The "master" instance was affected -->

       <!ELEMENT recurrenceid CDATA>
       <!-- RECURRENCE-ID value in iCalendar form (in UTC if a
            non-floating DATE-TIME value) for the affected instance -->

       <!ELEMENT added EMPTY>
       <!-- The component was added -->

       <!ELEMENT removed EMPTY>
       <!-- The component was removed -->

       <!ELEMENT changes changed-property*>
       <!-- Detailed changes in the iCalendar data -->

         <!ELEMENT changed-property changed-parameter*>
         <!ATTLIST changed-property name PCDATA>
         <!-- An iCalendar property changed -->

           <!ELEMENT changed-parameter EMPTY>
           <!ATTLIST changed-parameter name PCDATA>
           <!-- An iCalendar property parameter changed -->

   Example:  This example indicates that a non-recurring component, or
      the master component in a recurring component, was changed and
      that the change was to the "SUMMARY" iCalendar property.






Daboo                                                          [Page 16]

                        CalDAV User Notifications             March 2012


   <CS:calendar-changes xmlns:CS="http://calendarserver.org/ns/">
     <CS:recurrence>
       <CS:master/>
       <CS:changes>
         <CS:changed-property name="SUMMARY"/>
       </CS:changes>
     </CS:recurrence>
   </CS:calendar-changes>

   Example:  This example indicates that an instance of a recurring
      component was changed and that the change was to the "DTSTART"
      iCalendar property.

   <CS:calendar-changes xmlns:CS="http://calendarserver.org/ns/">
     <CS:recurrence>
       <CS:recurrenceid>20111215T160000Z</CS:recurrenceid>
       <CS:changes>
         <CS:changed-property name="DTSTART"/>
       </CS:changes>
     </CS:recurrence>
   </CS:calendar-changes>

5.3.2.1.  Handling Recurrences in CS:calendar-changes

   Changes to recurring components can be complex.  This section
   describes the possible set of changes that could occur, and what the
   CS:calendar-changes element will contain as a result.

   Master exists, unchanged override added  In this case, a CS:
      recurrence element will be present, containing a CS:recurrence-id
      element with a value equal to the RECURRENCE-ID property value (in
      UTC) of the added component.  A CS:added element will be present.
      There will not be any CS:removed or CS:changes elements.

   Master exists, changed override added  In this case, a CS:recurrence
      element will be present, containing a CS:recurrence-id element
      with a value equal to the RECURRENCE-ID property value (in UTC) of
      the added component.  Both CS:added and CS:changes elements will
      be present.  There will not be a CS:removed element.

   Master exists, override changed  In this case, a CS:recurrence
      element will be present, containing a CS:recurrence-id element
      with a value equal to the RECURRENCE-ID property value (in UTC) of
      the added component.  A CS:changes element will be present.  There
      will not be any CS:added or CS:removed elements.






Daboo                                                          [Page 17]

                        CalDAV User Notifications             March 2012


   Master exists, override removed  In this case, a CS:recurrence
      element will be present, containing a CS:recurrence-id element
      with a value equal to the RECURRENCE-ID property value (in UTC) of
      the added component.  A CS:removed element will be present.  There
      will not be a CS:added element.  A CS:changes element will only be
      present if the removed component differs from the "derived" master
      instance.

   Master exists, override cancelled  In this case, a CS:recurrence
      element will be present, containing a CS:recurrence-id element
      with a value equal to the RECURRENCE-ID property value (in UTC) of
      the added component.  A CS:removed element will be present.  There
      will not be any CS:added or CS:changes element.  There will also
      be a CS:master element present, with an appropriate CS:changes
      element, likely covering a change to "RRULE" or addition of
      "EXDATE" properties.

   Master does not exist, override added  In this case, a CS:recurrence
      element will be present, containing a CS:recurrence-id element
      with a value equal to the RECURRENCE-ID property value (in UTC) of
      the added component.  A CS:added element will be present.  There
      will not be a CS:removed or CS:changes element.

   Master does not exist, override changed  In this case, a CS:
      recurrence element will be present, containing a CS:recurrence-id
      element with a value equal to the RECURRENCE-ID property value (in
      UTC) of the added component.  A CS:changes element will be
      present.  There will not be any CS:added or CS:removed elements.

   Master does not exist, override removed  In this case, a CS:
      recurrence element will be present, containing a CS:recurrence-id
      element with a value equal to the RECURRENCE-ID property value (in
      UTC) of the added component.  A CS:removed element will be
      present.  There will not be any CS:added or CS:changes element.

5.3.3.  CS:deleted-details Element Definition

   Name:  deleted-details

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Provides summary information about a deleted resource or
      collection.

   Description:  This XML element is used in a CS:deleted element to
      describe useful information about a deleted resource or
      collection, so clients can provide a meaningful notification
      message to users.  This element has two variants: one for deletion



Daboo                                                          [Page 18]

                        CalDAV User Notifications             March 2012


      of a calendar object resource, the other for deletion of a
      calendar collection.

   Definition:

   <!ELEMENT deleted-details ((deleted-component,
                               deleted-summary,
                               deleted-next-instance?,
                               deleted-had-more-instances?) |
                              deleted-displayname)>
   <!-- deleted-displayname is used for a collection delete, the other
        elements used for a resource delete. -->

     <!ELEMENT deleted-component CDATA>
     <!-- The main calendar component type of the deleted
          resource, e.g., "VEVENT", "VTODO" -->

     <!ELEMENT deleted-summary CDATA>
     <!-- Indicates the "SUMMARY" of the next future instance at the
          time of deletion, or the previous instance if no future
          instances existed at the time of deletion. -->

     <!ELEMENT deleted-next-instance CDATA>
     <!ATTLIST deleted-next-instance tzid PCDATA>
     <!-- If present, indicates when the next deleted instance would
          have occurred. For a VEVENT that would be the DTSTART value,
          for a VTODO that would be either DTSTART or DUE, if present.
          In each case the value must match the value in the iCalendar
          data, and any TZID iCalendar property parameter value must
          be included in the tzid XML element attribute value. -->

     <!ELEMENT deleted-had-more-instances EMPTY>
     <!-- If present indicates that there was more than one future
          instances still to occur at the time of deletion. -->

     <!ELEMENT deleted-displayname CDATA>
     <!-- The DAV:getdisplayname property for the collection that
          was deleted.  -->

   Example:  This example indicates deletion of a non-recurring event
      that was yet to occur at the time of deletion.

   <CS:deleted-details xmlns:CS="http://calendarserver.org/ns/">
     <CS:deleted-component>VEVENT</CS:deleted-component>
     <CS:deleted-summary>Birthday Party</CS:deleted-summary>
     <CS:deleted-next-instance tzid="America/New_York
     >20120505T120000</CS:deleted-next-instance>
   </CS:deleted-details>



Daboo                                                          [Page 19]

                        CalDAV User Notifications             March 2012


   Example:  This example indicates deletion of a calendar.

   <CS:deleted-details xmlns:CS="http://calendarserver.org/ns/">
     <CS:deleted-displayname>Holidays</CS:deleted-displayname>
   </CS:deleted-details>

5.3.4.  CS:notify-changes Property

   Name:  notify-changes

   Namespace:  http://calendarserver.org/ns/

   Purpose:  Allows a user to specify whether resource change
      notifications are generated by the server.

   Protected:  This property MUST NOT be protected.

   PROPFIND behavior:  This property SHOULD NOT be returned by a
      PROPFIND allprop request (as defined in Section 14.2 of
      [RFC4918]).

   COPY/MOVE behavior:  This property value MUST be preserved in COPY
      and MOVE operations.

   Description:  This property allows a user to enable or disable the
      server generation of resource change notifications for the
      calendar collection, and all its child resources, on which the
      property resides.  If the property is not present on a calendar
      collection, the client and server MUST assume that resource change
      notifications are enabled.

   Definition:

   <!ELEMENT notify-changes (true|false)>
     <!ELEMENT true EMPTY>
     <!ELEMENT false EMPTY>

   <!-- true - notifications enabled,
        false - notifications disabled -->


6.  Security Considerations

   Some notification mechanisms might allow a user to trigger a
   notification to be delivered to other users (e.g., an invitation to
   share a calendar).  In such cases servers MUST ensure that suitable
   limits are placed on the number and frequency of such user generated
   notifications.



Daboo                                                          [Page 20]

                        CalDAV User Notifications             March 2012


   TBD: More?


7.  IANA Considerations

   This document does not require any actions on the part of IANA.


8.  Acknowledgments

   This specification is the result of discussions between the various
   Apple calendar server and client teams.


9.  References

9.1.  Normative References

   [RFC2119]  Bradner, S., "Key words for use in RFCs to Indicate
              Requirement Levels", BCP 14, RFC 2119, March 1997.

   [RFC3339]  Klyne, G., Ed. and C. Newman, "Date and Time on the
              Internet: Timestamps", RFC 3339, July 2002.

   [RFC4918]  Dusseault, L., "HTTP Extensions for Web Distributed
              Authoring and Versioning (WebDAV)", RFC 4918, June 2007.

9.2.  Informative References

   [RFC3744]  Clemm, G., Reschke, J., Sedlar, E., and J. Whitehead, "Web
              Distributed Authoring and Versioning (WebDAV)
              Access Control Protocol", RFC 3744, May 2004.

   [RFC4791]  Daboo, C., Desruisseaux, B., and L. Dusseault,
              "Calendaring Extensions to WebDAV (CalDAV)", RFC 4791,
              March 2007.


Appendix A.  Examples

   This section provides more detailed examples of resource change
   notifications for illustrative purposes only.

A.1.  Resource Created

   This is an example of the body of a notification resource where one
   resource has been created.




Daboo                                                          [Page 21]

                        CalDAV User Notifications             March 2012


   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:created>
         <D:href>http://example.com/cyrus/calendar/new.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
       </CS:created>
     </CS:resource-change>
   </CS:notification>

A.2.  Resource Updated - Property Change

   This is an example of the body of a notification resource where one
   non-recurring event has had its "DTSTART" and "SUMMARY" iCalendar
   property values changed.

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:updated>
         <D:href>http://example.com/cyrus/calendar/new.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
         <CS:calendar-changes>
           <CS:recurrence>
             <CS:master/>
             <CS:changes>
               <CS:changed-property name="DTSTART"/>
               <CS:changed-property name="SUMMARY"/>
             </CS:changes>
           </CS:recurrence>
         </CS:calendar-changes>
       </CS:updated>
     </CS:resource-change>
   </CS:notification>





Daboo                                                          [Page 22]

                        CalDAV User Notifications             March 2012


A.3.  Resource Updated - Parameter Change

   This is an example of the body of a notification resource where one
   non-recurring event has had the "PARTSTAT" iCalendar property
   parameter on an "ATTENDEE" property changed, and a "TRANSP" property
   added.

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:updated>
         <D:href>http://example.com/cyrus/calendar/new.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
         <CS:calendar-changes>
           <CS:recurrence>
             <CS:master/>
             <CS:added>
               <CS:changed-property name="TRANSP"/>
             </CS:added>
             <CS:changes>
               <CS:changed-property name="ATTENDEE">
                 <CS:changed-parameter name="PARTSTAT"/>
               </CS:changed-property>
             </CS:changes>
           </CS:recurrence>
         </CS:calendar-changes>
       </CS:updated>
     </CS:resource-change>
   </CS:notification>

A.4.  Resource Updated - Multiple Instances Change

   This is an example of the body of a notification resource where two
   instances of a recurring event have their "DTSTART" and "SUMMARY"
   iCalendar property values changed.










Daboo                                                          [Page 23]

                        CalDAV User Notifications             March 2012


   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:updated>
         <D:href>http://example.com/cyrus/calendar/new.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
         <CS:calendar-changes>
           <CS:recurrence>
             <CS:recurrenceid>20120209T170000Z</CS:recurrenceid>
             <CS:changes>
               <CS:changed-property name="DTSTART"/>
               <CS:changed-property name="SUMMARY"/>
             </CS:changes>
           </CS:recurrence>
           <CS:recurrence>
             <CS:recurrenceid>20120210T170000Z</CS:recurrenceid>
             <CS:changes>
               <CS:changed-property name="DTSTART"/>
               <CS:changed-property name="SUMMARY"/>
             </CS:changes>
           </CS:recurrence>
         </CS:calendar-changes>
       </CS:updated>
     </CS:resource-change>
   </CS:notification>

A.5.  Resource Updated - Multiple User Change

   This is an example of the body of a notification resource where two
   instances of a recurring event have their "DTSTART" and "SUMMARY"
   iCalendar property values changed.  Each instance was changed by a
   different user.













Daboo                                                          [Page 24]

                        CalDAV User Notifications             March 2012


   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:updated>
         <D:href>http://example.com/cyrus/calendar/new.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
         <CS:calendar-changes>
           <CS:recurrence>
             <CS:recurrenceid>20120209T170000Z</CS:recurrenceid>
             <CS:changes>
               <CS:changed-property name="DTSTART"/>
               <CS:changed-property name="SUMMARY"/>
             </CS:changes>
           </CS:recurrence>
         </CS:calendar-changes>
       </CS:updated>
       <CS:updated>
         <D:href>http://example.com/cyrus/calendar/new.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Eric</CS:first-name>
           <CS:last-name>York</CS:last-name>
           <D:href>/principals/ericyork</D:href>
         </CS:changed-by>
         <CS:calendar-changes>
           <CS:recurrence>
             <CS:recurrenceid>20120210T170000Z</CS:recurrenceid>
             <CS:changes>
               <CS:changed-property name="DTSTART"/>
               <CS:changed-property name="SUMMARY"/>
             </CS:changes>
           </CS:recurrence>
         </CS:calendar-changes>
       </CS:updated>
     </CS:resource-change>
   </CS:notification>

A.6.  Resource Deleted

   This is an example of the body of a notification resource where one
   resource has been deleted.  The resource was a VEVENT whose next
   occurrence was in the future on 20120210T170000Z.




Daboo                                                          [Page 25]

                        CalDAV User Notifications             March 2012


   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:deleted>
         <D:href>http://example.com/cyrus/calendar/new.ics</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
         <CS:deleted-details>
           <CS:deleted-component>VEVENT</CS:deleted-component>
           <CS:deleted-summary>CalDAV Meeting</CS:deleted-summary>
           <CS:deleted-next-instance
           >20120210T170000Z</CS:deleted-next-instance>
         </CS:deleted-details>
       </CS:deleted>
     </CS:resource-change>
   </CS:notification>

A.7.  Collection Created

   This is an example of the body of a notification resource where a
   calendar collection has been created.

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:created>
         <D:href>http://example.com/cyrus/new-calendar/</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
       </CS:created>
     </CS:resource-change>
   </CS:notification>

A.8.  Collection Updated

   This is an example of the body of a notification resource where
   coalesced changes in a calendar collection are shown.  In this case 1
   child resource was created, 2 updated, and 1 deleted.



Daboo                                                          [Page 26]

                        CalDAV User Notifications             March 2012


   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:collection-changes>
         <D:href>http://example.com/cyrus/calendar/</D:href>
         <CS:child-created>1</CS:child-created>
         <CS:child-updated>2</CS:child-updated>
         <CS:child-deleted>1</CS:child-deleted>
       </CS:collection-changes>
     </CS:resource-change>
   </CS:notification>

A.9.  Collection Deleted

   This is an example of the body of a notification resource where a
   calendar collection has been deleted.

   <?xml version="1.0" encoding="UTF-8"?>
   <CS:notification xmlns:D="DAV:"
                    xmlns:CS="http://calendarserver.org/ns/">
     <CS:dtstamp>2011-12-09T11:51:14-05:00</CS:dtstamp>
     <CS:resource-change>
       <CS:deleted>
         <D:href>http://example.com/cyrus/old-calendar/</D:href>
         <CS:changed-by>
           <CS:first-name>Cyrus</CS:first-name>
           <CS:last-name>Daboo</CS:last-name>
           <D:href>/principals/cyrusdaboo</D:href>
         </CS:changed-by>
         <CS:deleted-details>
           <CS:deleted-displayname>Holidays</CS:deleted-displayname>
         </CS:deleted-details>
       </CS:deleted>
     </CS:resource-change>
   </CS:notification>














Daboo                                                          [Page 27]

                        CalDAV User Notifications             March 2012


Author's Address

   Cyrus Daboo
   Apple Inc.
   1 Infinite Loop
   Cupertino, CA  95014
   USA

   Email: cyrus@daboo.name
   URI:   http://www.apple.com/









































Daboo                                                          [Page 28]