попробуйте что-то вроде:
...
form.on("change", function(e){
console.log("Something changed on the form builder");
var jsonSchema = JSON.stringify(form.submission, null, 4);
console.log(jsonSchema); // this is the json schema of form components
});
...
или вы можете попробовать использовать builder.instance.schema
, как ...
form.on("change", function(e){
console.log("Something changed on the form builder");
var jsonSchema = JSON.stringify(builder.instance.schema, null, 4);
console.log(jsonSchema);
});
...