I have this JSON string coming in from a form, in there I have key-value pairs (the regular json), but I don't know what keys will come in. I want to get all the key-value pairs there, loop them, then create a row in my database for each of them. That row basically just has "[ID, fkId, Label, Value]", both Label and Value are strings.
I'm having a hard time figuring out how to parse that json string to get the info I want. Currently I don't care about nested json strings, I might handle those later / differently.