Hi Sebastian,
recently I changed my custom input like below:

var obj = { "mon": {"am":monAM, "pm":monPM}, "tue": {"am":tueAM, "pm":tuePM}, "wed": {"am":wedAM, "pm":wedPM}, "thur": {"am":thurAM, "pm":thurPM}, "fri": {"am":friAM, "pm":friPM}, "sat": {"am":satAM, "pm":friPM}, "sun": {"am":sunAM, "pm":sunPM} };
var myJSON = JSON.stringify(obj);
I use the code above to change those values to become a json, how can I put the json result back to the schema’s field?
I saw your tutorial but I still don’t get it how it works for getting back the data to schemas, many thanks!