{
"firstname": yourfirstname(),
"yourlastname": yourlastname(),
"city": mycity(),
"mycountry": mycountry(),
"mycountryCode": mycountryCode(),
"email uses current data": function () {
return this.firstname + '.' + this.yourlastname + '@gmail.com';
},
"email from expression": expression(".@gmail.com"),
"random_value": random(1, 100),
"random float": randomFloat(1, 100, 3),
"bool_value": randomBool(),
"date_value": date('Y-m-d', '1980-01-01', '2000-01-15'),
"regEx_value": regex(/hello+ (world|to you)/),
"enum_value": choice('json', 'generator', 'online'),
"array_value": repeat(5, yourfirstname()),
"array of objects":
repeat(3, {
"index": index(),
"index start at 5": index(5)
}),
"age": random(18, 100)
}
Download
xxxxxxxxxx