How to manage JSON documents for JSON schema forms?

We are using JSON schema forms in our app. I am looking for recommendations on best practices to store and retrieve these form's JSON schema. My first thought was to store them in MongoDB, retrieve them when the app loads, and then hold in localstorage. But I could be way off here.
We would also like to version these forms as we improve the app over time.
Thanks in advance!

I think your idea is a great place to start. You can store and access JSON schema in any of your resources (MongoDB being a great example) in your app to pull them into a JSON schema form via a query and have it run on page load. It would not be advised to store JSON schemas in local storage if the intention is to reuse them across multiple apps or multiple forms.

Thank you for reassuring me.

1 Like