DataSet not recognizing data

Hey, im trying to fetch data from an API and when i click “test data url” this is the result:

{
   "entries": [
      [
         {
            "actualYear": 0,
            "lastYear": 0,
            "productFamily": "example1",
            "twoYearsAgo": 0
         },
         {
            "actualYear": 0,
            "lastYear": 0,
            "productFamily": "example2",
            "twoYearsAgo": 0
         },
         {
            "actualYear": 0,
            "lastYear": 0,
            "productFamily": "example3",
            "twoYearsAgo": 16.22
         }
      ]
   ],
   "number": 3,
   "isEligibleToTruncate": true,
   "processed": [
      [
         {
            "productFamily": "example1"
         },
         {
            "productFamily": "example2"
         },
         {
            "productFamily": "example3"
         }
      ]
   ],
   "messages": [
      "Processing 1 results into 1 potential columns",
      "Processing Result with Data Root ",
      "DataRoot is an array",
      "Processing 0",
      "Processing 1",
      "Processing 2",
      "Consolidating entries",
      "There are 3 entries in total"
   ]
}

this is my column configuration


and yet when i click view no data is displayed.

What could possibly be wrong here?