func RetrieveMultiPartFormJSONValue(request *http.Request, name string, target interface{}, optional bool) error {
    value, err := RetrieveMultiPartFormValue(request, name, optional)
    if err != nil {
        return err
    }