Is your feature request related to a problem? Please describe.
Currently we have several generators available in Faker. But what if we have a mechanism which takes a format as input and returns a data with same format completely generated by the generators of faker. The format will contain multiple data fields and nested complexity. This can be useful for generating multiple test scenarios in one go.
Describe the solution you'd like
You recursive search and build of data using faker generators.
I created a new Json generator that can both generate json strings and json objects formatted as map[string]interface{}. The first version with this feature is v1.19.0.
Since this was implemented and released, I'm closing this issue.
Is your feature request related to a problem? Please describe. Currently we have several generators available in Faker. But what if we have a mechanism which takes a format as input and returns a data with same format completely generated by the generators of faker. The format will contain multiple data fields and nested complexity. This can be useful for generating multiple test scenarios in one go.
Describe the solution you'd like You recursive search and build of data using faker generators.