In the last days I have developed a Leveling system. Im storing the Data in an JSON file, which is looking like this:
    {
      serverID{
         userID1{
          xp: 10;
          Level: 1
         },
         userID2{
          xp: 10;
          Level: 1
         }
      }
    }
Now I would like to make a leaderboard which is reading from this file. I have looked around in the Internet, but nothing worked. Can someone help me?