Variable: org-id-ts-format

org-id-ts-format is a customizable variable defined in org-id.el.gz.

Value

"%Y%m%dT%H%M%S.%6N"

Documentation

Timestamp format for IDs generated using ts org-id-method.

The format should be suitable to pass as an argument to format-time-string.

Defaults to ISO8601 timestamps without separators and without timezone, local time and precision down to 1e-6 seconds.

This variable was added, or its default value changed, in Org version
9.5.

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-id.el.gz
(defcustom org-id-ts-format "%Y%m%dT%H%M%S.%6N"
  "Timestamp format for IDs generated using `ts' `org-id-method'.
The format should be suitable to pass as an argument to `format-time-string'.

Defaults to ISO8601 timestamps without separators and without
timezone, local time and precision down to 1e-6 seconds."
  :type 'string
  :package-version '(Org . "9.5"))