uuid_validate
Check whether a string is a well-formed UUID and, when recognizable, report its version and variant so you can accept or reject identifier inputs confidently.
Use when:
Is this string a valid UUID?
What version and variant is this UUID?
Validate a UUID before using it as a primary key or request id
Do not use when:
Generate a new UUID
Validate ISBNs or other non-UUID identifiers (use isbn_validate)
Validate JSON structure (use json_validate)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| value | Yes | UUID candidate string |