UUID

UUID

Description

Replaces the field with a randomly generated UUID V4.

Category

Anonymization

Supported Field Types

  • text
  • timestamp
  • date
  • float
  • int
  • boolean
  • time

Output Field Type

  • text

Arguments

None

Pseudo-code (Python)

def func(val):
    """
        val: field value
    """
    import uuid
    return str(uuid.uuid4())