The tools in KM to read and write JSON work fine. But the only way I have found to actually remove a key from a JSON object is to convert it to a dictionary, set the value in the dictionary associated with the key to the empty string, then convert the dictionary back to JSON.
I'm thinking that I must be overlooking an easier way.