Edit form


<form> {

   "format": "json",
   "title": "설문조사",
   "fields": [
       {
           "type": "radio",
           "name": "Favorite color",
           "label": "What is your favorite color?",
           "values": ["Red", "Blue", "Green", "Yellow"]
       },
       {
           "type": "textarea",
           "name": "Feedback",
           "label": "약간 불편한 점을 적어주세요:"
       }
   ],
   "actions": [
       {
           "type": "submit",
           "label": "제출"
       }
   ]

} </form>