{
        "formName": "appointment notes",
        "formDescription":"Add special notes for the appointment here",
        "visitNoteForm":{
            "form":[
                {
                    "key": "note",
                    "htmlClass": "col-md-12 col-sm-12 col-xs-12 col-lg-12",
                    "type": "text",
                    "placeholder": "Description",
                    "required": true,
                    "feedback": false,
                    "disableSuccessState": false,
                    "disableErrorState": false

                },
                {
                    "type":"section",
                    "htmlClass":"col-md-12 col-sm-12 col-xs-12 text-center",
                    "items":[
                        {
                            "type":"section",
                            "htmlClass":"btn-group",
                            "items":[
                                {
                                    "type":"button",
                                    "title":"Select Attachment",
                                    "onClick": "selectAttachments()",
                                    "style":"btn btn-primary btn-file btn-sm remove-focus",
                                    "icon":"glyphicon glyphicon-open"
                                }
                            ]
                        }
                    ]
                    }
            ],
            "schema":{
               "type":"object",
               "title":"Comment",
               "properties":{
                  "note":{
                    "type": "string",
                    "title": "Summary",
                    "x-schema-form": {
                       "type": "textarea"
                    }
                  }
               },
               "required":["note"]
               
            }
        },
        "attachments":{
            "maxAttachments": 0,
            "accept":"image/jpeg,image/png,application/pdf"
        },
        "VisitNoteViewConfig":{
            "report": "Blooad report",
            "attachments": "Attachments",
            "upload": "Upload image",
            "capture": "Capture image"
        }
    }
