-`Mapped[UUID]` resolves to `uuid.UUID` at runtime, but static checkers need the cast target.
- The string-literal form avoids importing `UUID` solely to pass it to `typing.cast`, which ruff's `TC006` rule flags as a typing-only import used at runtime.
- It also avoids `# noqa` or `# type: ignore` suppressions.