Variable: org-id-prefix
org-id-prefix is a customizable variable defined in org-id.el.gz.
Value
nil
Documentation
The prefix for IDs.
This may be a string, or it can be nil to indicate that no prefix is required. When a string, the string should have no space characters as IDs are expected to have no space characters in them.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-id.el.gz
(defcustom org-id-prefix nil
"The prefix for IDs.
This may be a string, or it can be nil to indicate that no prefix is required.
When a string, the string should have no space characters as IDs are expected
to have no space characters in them."
:group 'org-id
:type '(choice
(const :tag "No prefix")
(string :tag "Prefix")))