validate_uuid
Check if a UUID string follows the standard format and extract its metadata: version, variant, URN, hex, and integer representation.
Instructions
Validate a UUID string and extract its metadata.
Checks the standard xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx format and detects the version (v1 time-based, v3 MD5, v4 random, v5 SHA-1).
Args: uuid: UUID string (e.g. "550e8400-e29b-41d4-a716-446655440000")
Returns: dict with keys: valid, uuid (normalized), version, version_description, variant, urn, hex, int, cost_usd
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes |