{
"company": "{{company()}}",
"users": [
"{{repeat(5, 7)}}",
{
"_id": "{{hash()}}",
"guid": "{{guid()}}",
"isActive": "{{bool()}}",
"balance": "{{integer({ min: -20, max: 20 })}}",
"eyeColor": "{{pickone(['blue', 'brown', 'green'])}}",
"name": "{{first()}} {{last()}}",
"email": "{{email()}}",
"company": "<parent.company>",
"username": "<this.email>",
"friends": [
"{{repeat(3)}}",
{
"id": "{{hash()}}",
"name": "{{first()}} {{last()}}"
}
]
}
]
}
Preview
{}