big_orders(raw, threshold) that parses a JSON array of order objects (each with id and amount) and returns the list of ids whose amount is at least the threshold, preserving order.big_orders('[{"id": 1, "amount": 50}, {"id": 2, "amount": 500}]', 100)[2]
Only order 2 clears 100.
loads gives a list of dicts.
A comprehension with o['amount'] >= threshold.