How to submit forms with JSONForms with Remix

Hello. Remix seems to be built with the assumption that forms are ideally submitted by using html standards and I wasn’t sure how I can get it to work as is.

Hi @fform,

You can also submit JSON Forms forms via “HTML standards” so that should not be a problem. But even if you want a Javascript only solution (without DOM manipulation) it looks like to me that you can offer arbitrary REST endpoints in Remix which can be used for that use case.

thank you. would there be a way to define the “name” prop on an input based on the label or property name by default?