uuidv5 Function
uuidv5
generates a name-based UUID, as described in
RFC 4122 section 4.3,
also known as a "version 5" UUID.
Unlike the pseudo-random UUIDs generated by
uuid
, name-based UUIDs derive from namespace and an name,
producing the same UUID value every time if the namespace and name are
unchanged.
Name-based UUID namespaces are themselves UUIDs, but for readability this function accepts some keywords as aliases for the namespaces that were assigned by RFC 4122:
Keyword | Namespace ID | Name format |
---|---|---|
"dns" | 6ba7b810-9dad-11d1-80b4-00c04fd430c8 | A fully-qualified DNS domain name. |
"url" | 6ba7b811-9dad-11d1-80b4-00c04fd430c8 | Any valid URL as defined in RFC 3986. |
"oid" | 6ba7b812-9dad-11d1-80b4-00c04fd430c8 | An ISO/IEC object identifier |
"x500" | 6ba7b814-9dad-11d1-80b4-00c04fd430c8 | X.500 Distinguished Name |
To use any other namespace not included in the above table, pass its assigned namespace ID directly in the first argument in the usual UUID string format.
Examples
Use the namespace keywords where possible, to make the intent more obvious to a future reader:
The namespace keywords treated as equivalent to their corresponding namespace UUIDs, and in some special cases it may be more appropriate to use the UUID form:
If you wish to use a namespace defined outside of RFC 4122, using the namespace UUID is required because no corresponding keyword is available:
When using raw UUID namespaces, consider including a comment alongside the expression that indicates which namespace this represents in a human-significant manner, such as by reference to the standard that defined it.
Related Functions
uuid
, which generates pseudorandom UUIDs.