Skip to main content
Formbase stores submissions as a JSON object where each key is the name attribute of a field. Most HTML inputs work exactly as you expect, but some types (checkbox groups and multiple inputs) have special considerations. Use this reference to pick field names and understand what shows up in your submission data.
Each field becomes a string value in the submission data.
Only the selected value is submitted. The key is plan and the value is the chosen option.
If checked, the value is sent. If unchecked, the key is omitted entirely.
The selected option value is stored under country.
Files are uploaded and stored as URLs. Formbase sets either the file or image key based on the MIME type.

Multiple values with the same name

When using multipart/form-data, repeated keys collapse to the last value. If you need arrays (for example, multi-select or checkbox groups), submit as JSON instead.
JSON submissions are best when you need structured data or arrays. Browser form posts are best for simple, classic form flows.