Generate person
Generates a randomized person dict
Evaluation
This expression evaluates to a function of the form:
(seed) -> any
The function is consistent with generator semantics of the Random Data step.
Processing
Given a seed value, the function returns a pseudo-random dict value of the following form:
{
:gender string,
:family_name string,
:email_handle string,
:given_name string,
:social_handle string,
:email string,
:job string
}
An concrete value might look like:
{
:gender 'female',
:family_name 'Theron',
:email_handle 'jeralee.theron',
:given_name 'Jeralee',
:social_handle 'muffin53',
:email 'jeralee.theron@icloud.com',
:job 'Wait Staff Manager'
}
All values are randomly generated.
Settings
Name | Type | Description |
---|---|---|
Chance of nil |
double |
Probability in range of 0.0 to 1.0 that the generator will return nil instead of generating a value. |