Overview
I am currently faced with a situation involving scientific data with numerous one-to-many relations. The user base would like to be able to submit the data for import via a Microsoft Excel file. Obviously, this is quite difficult to pin down using Excel, especially when dealing with many relations. Additionally, relying on an Excel format is somewhat more prone to errors.
JSON, on the other hand, is well suited in formatting the data in an infinitely hierarchal manner. This makes it relatively trivial in parsing and importing data into a database.
Question
So, does anyone know if there is any such thing as a JSON Builder? Like, something where an end-user can hit a UI to manually enter data, complete with hierarchal capabilities.
I could imagine feeding the "tool" with configurations... such as a schema, complete with data types, all of the one-to-many instances, and relational bindings. Then, end users would enter data accordingly.
I could build an interface, but I'm trying to determine if there is anything out there which would fit the bill before I even consider going down that road.
The figure below is a hypothetical example of "one-to-many" where "UserWorkHistory" is the "many".