MyFormworks / Formworks

Formworks is a framework for building forms from JSON files.
https://myformworks.github.io/Formworks/
MIT License
6 stars 1 forks source link

Form Data Response #35

Closed Galdineris closed 3 years ago

Galdineris commented 4 years ago

After the user fills out the form, we need to be able to return the information somehow. This is a general issue to keep track of this.

Galdineris commented 4 years ago

After deliberations by @csfar , @VicFalcetta , @EdgSgroi , @cassiaabarbosa and me, some definitions were made. First of all, the form response will be on a JSON or coddle structs format. We will provide both solutions. The response was structured to reflect the form creation JSON according to the template bellow:

{
title:""
components [
{
title:""
type:""
content:""
},
{
title:""
type:""
content:""
}
]
}