I want to parse JSON file and get two fields from the JSON and put them in a dictionary. For example:
{
    "food": [{
            "name": "pasta",
            "type": "blabla",
            "sauce": [{
                    "name": "cream",
                    "url": "http://www...."
                }
            ]
        }, {
            "name": "pizza",
            "type": "bla",
            "sauce": [{
                    "name": "Tomato",
                    "url": "http://www...."
                }
            ]
        }
    ]
}
And I want to get:
{pasta: cream, pizza: Tomato}
 
     
    