JSON Feeders

Hi All,

I want to simulate below scenario in Gatling

I have 100 users and 1 JSON file which has 100 JSON requests. I want to feed 1 JSON request to 1 user. In that way, 100 JSON requests to 100 users.

e.g.
JSON File -

{
a
},
{
b

}

1st user will execute -
{
a}

2 user will execute -
{

b
}

and so on.

Thanks.