Convert JSON to Lua Dictionnaries

Hello, I would like to make an accept group requests GUI with noblox.js.

I have made the program to get json but now, what can I do with that ?

{
  "previousPageCursor": null,
  "nextPageCursor": null,
  "data": [
    {
      "requester": {
        "userId": 942459878,
        "username": "AmazingEdin24",
        "displayName": "Edin"
      },
      "created": "2021-08-28T13:59:56.983Z"
    },
    {
      "requester": {
        "userId": 167885604,
        "username": "TheShadowDeveloper",
        "displayName": "MysticFox"
      },
      "created": "2021-08-28T13:43:05.16Z"
    },
    {
      "requester": {
        "userId": 132000377,
        "username": "littlecurlyangel1",
        "displayName": "MadnessUwUz"
      },
      "created": "2021-08-28T12:30:14.433Z"
    }
  ]
}

Is there a way to convert it into a dictionnary or a table?

roblox has a built in function for that: HttpService:JSONDecode(jsonString)