Dynamic json schemas fetching and binding

does jsonforms support fetch and binding both ui-schema and json-schema dynamically (for example from rest service)?

[original thread by rdinnik]

Hi @rdinnik, thanks for your interest in JSON Forms! The JSON Schema as well as the ui schema are passed to JSON Forms as JSON objects. JSON Forms itself doesn’t care how these objects came to be, so you could have loaded them from file, fetched them from a REST service or programmatically constructed them beforehand. You can take a look at our JSON Forms React seed where we load them from file.

[rdinnik]

thank you?, Stefan