Function: icalendar-uid-property-p

icalendar-uid-property-p is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-uid-property-p NODE)

Documentation

Return non-nil if NODE represents a UID property.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
;; TODO: UID should probably be its own type
(ical:define-property ical:uid "UID"
  "Unique Identifier.

This property specifies a globally unique identifier for the
containing component, and is required in an `icalendar-vevent',
`icalendar-vtodo', `icalendar-vjournal', or `icalendar-vfreebusy'
component.

RFC5545 requires that the program generating the UID guarantee
that it be unique, and recommends generating it in a format which
includes a timestamp on the left hand side of an '@' character,
and the domain name or IP address of the host on the right-hand
side."
  ical:text
  :child-spec (:zero-or-more (ical:otherparam))
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.4.7")