-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1158 lines (1097 loc) · 75.5 KB
/
index.html
File metadata and controls
1158 lines (1097 loc) · 75.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W3TJ27QQ4T"></script>
<script src="/products/ecommerce.js"></script>
<script>
// [start] GA Tag
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-W3TJ27QQ4T');
// [end] GA Tag
function getURLParam(param) {
return new URL(window.location.href).searchParams.get(param);
}
var eComMeasures = ECommerce.getECommerceMeasures('SKU_FBPMNQ001');
if (getURLParam('dev') === null) {
ECommerce.purchaseEvent(eComMeasures);
ECommerce.clickEvent();
}
</script>
<title>freebpmnquality — Free Online BPMN Quality Analysis Service</title>
<meta name="title" content="freebpmnquality — Free Online BPMN Quality Analysis Service">
<meta name="description" content="Evaluation of BPMN business process model quality and correctness. This free online service helps to check BPMN notation diagrams and find modeling mistakes.">
<meta property="og:type" content="website">
<meta property="og:title" content="freebpmnquality — Free Online BPMN Quality Analysis Service">
<meta property="og:description" content="Evaluation of BPMN business process model quality and correctness. This free online service helps to check BPMN notation diagrams and find modeling mistakes.">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="freebpmnquality — Free Online BPMN Quality Analysis Service">
<meta property="twitter:description" content="Evaluation of BPMN business process model quality and correctness. This free online service helps to check BPMN notation diagrams and find modeling mistakes.">
<meta name="keywords" content="bpmn 2.0, bpmn diagram, bpmn online, bpmn notation, bpmn software">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link href="https://fonts.googleapis.com/css?family=Kanit" rel="stylesheet" />
<link rel="stylesheet" href="css/main.css" />
<link rel="icon" type="image/png" href="images/favicon.png" />
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8990058470889069" crossorigin="anonymous"></script>
</head>
<body id="home" style="background-color: #f8f9fa;">
<nav class="navbar sticky-top navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="javascript:void(0);" style="font-weight: bold;">freebpmnquality</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/kbase.html">Knowledge Base</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#solutions">Solutions</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="scopeDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Scope</a>
<div class="dropdown-menu" aria-labelledby="scopeDropdown">
<a class="nav-link" href="#ecosystem">Digital Ecosystem</a>
<a class="nav-link" href="#industries">Industries</a>
</div>
</li>
<li class="nav-item">
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="assetsDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">We Offer</a>
<div class="dropdown-menu" aria-labelledby="assetsDropdown">
<a class="nav-link" href="#services">Services</a>
<a class="nav-link" href="#usage">Usage</a>
<a class="nav-link" href="#motivation">Motivation</a>
<a class="nav-link" href="#howtouse">Check BPMN</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="#roadmap">Roadmap</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#studies">Studies</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#poweredby">Powered By</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contacts">Contacts</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/privacy-policy.html">Privacy Policy</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron" id="header">
<h1 class="display-4 text-center">Free Online BPMN Quality Analysis Service</h1>
<img class="rounded mx-auto d-block" alt="logo" height="300" src="images/logo_transparent.png" />
<p itemprop="description" class="text-center mt-4">
<h6 class="text-center" style="font-weight: bold;">Evaluation of BPMN business process model quality and correctness</h6>
<h6 class="text-center" style="font-weight: bold;">This online service helps to find modeling mistakes in BPMN diagrams</h6>
<div class="text-center mt-4">
<a href="/products/fbpmnq/?utm_source=freebpmnquality.github.io&utm_medium=button&utm_campaign=fbpmnq-demo&utm_content=ads-free" class="btn btn-info btn-lg mt-1" tabindex="-1" role="button" aria-disabled="true" style="border-radius: 1rem; font-weight: bold; background-color: #40a8c4; border-color: #40a8c4;"
target="_blank">TRY FOR FREE</a>
<a href="/bpmn-scorecard.html" class="btn btn-info btn-lg mt-1" tabindex="-1" role="button" aria-disabled="true" style="border-radius: 1rem; font-weight: bold; background-color: #f15b38; border-color: #f15b38;" target="_blank">BPMN SCORECARD</a>
<a href="/nft-business-models.html" class="btn btn-info btn-lg mt-1" tabindex="-1" role="button" aria-disabled="true" style="border-radius: 1rem; font-weight: bold; background-color: #fc4c69; border-color: #fc4c69;" target="_blank">NFT COLLECTION</a>
<a href="/blockpmn.html" class="btn btn-info btn-lg mt-1" tabindex="-1" role="button" aria-disabled="true" style="border-radius: 1rem; font-weight: bold; background-color: #ffd64d; border-color: #ffd64d; color: #f52549;" target="_blank">BLOCKCHAIN MODELS</a>
</div>
</p>
</div>
<span id="solutions"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">Solutions</h1>
<p class="text-center text-muted ml-4 mr-4">All of the cloud services provided by our team</p>
<div class="ml-4 mr-4">
<div class="card-deck">
<div class="card" style="border-radius: 1rem;">
<div class="card-body text-center">
<img src="/images/etherbpmn.png" class="card-img-top" alt="etherbpmn" style="width: 240px;">
<p class="card-text"><a role="button" class="btn btn-primary" style="border-radius: 1rem;" href="/services/storage/" target="_blank">Get started</a></p>
<p class="card-text">Free online software to exchange BPMN models in a distributed blockchain-driven collection.</p>
<a href="#detail-etherbpmn" class="card-link text-muted">About</a>
</div>
</div>
<div class="card" style="border-radius: 1rem; border-color: #ffc107; border-width: 0.25rem;">
<div class="card-body text-center">
<img src="/images/qualibpmn.png" class="card-img-top" alt="qualibpmn" style="width: 240px;">
<p class="card-text">
<a role="button" class="btn btn-primary" style="border-radius: 1rem;" href="/services/analytics/" target="_blank">Get started</a>
<a role="button" class="btn btn-primary" style="border-radius: 1rem; background-color: #FF725E; border-color: #FF725E;" href="https://sourceforge.net/projects/freebpmnquality/" target="_blank">Download</a>
</p>
<p class="card-text">Free online software to validate BPMN business process diagrams and find modeling mistakes.</p>
<a href="#detail-qualibpmn" class="card-link text-muted">About</a>
</div>
</div>
<div class="card" style="border-radius: 1rem;">
<div class="card-body text-center">
<img src="/images/finbpmn.png" class="card-img-top" alt="finbpmn" style="width: 240px;">
<p class="card-text"><a role="button" class="btn btn-primary" style="border-radius: 1rem;" href="/services/finance/" target="_blank">Get started</a></p>
<p class="card-text">Free online software to estimate design efforts and cost of BPMN business process diagrams.</p>
<a href="#detail-finbpmn" class="card-link text-muted">About</a>
</div>
</div>
</div>
<p class="text-center text-muted ml-4 mr-4 mt-4">Demonstrational solutions for high-quality business process modeling, benchmarking, and knowledge management</p>
<div class="card-deck">
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/fbpmnq/logo.png" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 240px; height: 240px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/fbpmnq.html" target="_blank">FBPMNQ</a>
</h5>
<small class="text-muted">Free online check BPMN diagrams to find workflow modeling mistakes. Design high-quality business process models with this online BPMN validation and analysis tool.</small>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/scorecard/logo.png" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 240px; height: 240px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/bpmn-scorecard.html" target="_blank">BPMN Scorecard Validation Tool</a>
</h5>
<small class="text-muted">This tool is the industry benchmark of BPMN model quality. Evaluate your business process models using this Scorecard to design sound and error-less diagrams.</small>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/nft/logo.png" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 240px; height: 240px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/nft-business-models.html" target="_blank">bumonft</a>
</h5>
<small class="text-muted">A blockchain-driven NFT protocol for BPMN, ARIS, ArchiMate, and other business models that can be shared and co-designed by virtual or traditional companies.</small>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/blockpmn/banner.png" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 240px; height: 240px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/blockpmn.html" target="_blank">BlockPMN</a>
</h5>
<small class="text-muted">Free BPMN business process examples of crypto saving, staking, DeFi, and investing activities. Examples of smart contracts to handle blockchain BPMN modeling.</small>
</div>
</div>
</div>
<p class="text-center text-muted ml-4 mr-4 mt-4">Other small third-party web tools to simplify software development, management, and analytics</p>
<div class="card-deck">
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/scm/logo.PNG" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 120px; height: 120px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/scm.html" target="_blank">SCOR® SCM Calculator</a>
</h5>
<small class="text-muted">SCOR-driven and BPMN business process centric Supply Chain Management (SCM) calculator to plan ordering, shipping, and returning product streams between suppliers and customers.</small>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/viz/logo.PNG" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 120px; height: 120px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/exonvizz.html" target="_blank">exOnviZZ</a>
</h5>
<small class="text-muted">Build attractive data visualization graphs and charts online for FREE using Excel XLS XLSX document reports exported from 1C, BAS, and other enterprise accounting information systems.</small>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/br2sql/logo.png" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 120px; height: 120px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/br2sql.html" target="_blank">BR2SQL</a>
</h5>
<small class="text-muted">Translate natural language business rules into SQL DDL database creation scripts ONLINE FOR FREE. Ready data types, primary and foreign keys, and unique indexes for database tables.</small>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/bmshack.png" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 120px; height: 120px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/business-models.html" target="_blank">BusinessModelShack</a>
</h5>
<small class="text-muted">FREE ONLINE downloadable collection of 332 BPMN reference business process models created in compliance with APQC's PCF® Cross Industry Process Classification Framework.</small>
</div>
</div>
</div>
<p class="text-center text-muted ml-4 mr-4 mt-4">Educational and research experimental projects</p>
<div class="card-deck">
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/bloxience.png" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 120px; height: 120px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/services/bloxience/" target="_blank">Bloxience</a>
</h5>
<small class="text-muted">R&D implementation of the blockchain data structure in JavaScript.</small>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<div class="text-center">
<img src="/images/efforteum.png" class="card-img-top" alt="logo" style="border-radius: 1rem; width: 120px; height: 120px; border: 1px solid rgba(0,0,0,.125);">
</div>
<div class="card-body text-center">
<h5 class="card-title text-center">
<a href="/services/efforts/" target="_blank">Efforteum</a>
</h5>
<small class="text-muted">Tokenize web software development efforts using the address of a website.</small>
</div>
</div>
</div>
</div>
<span id="ecosystem"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">Digital Ecosystem</h1>
<p class="text-center text-muted ml-4 mr-4">Synergy of our tools for BPMN quality analysis and related activities</p>
<div class="ml-4 mr-4">
<div class="table-responsive">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th scope="col">Feature/Service</th>
<th scope="col">EtherBPMN</th>
<th scope="col">QualiBPMN</th>
<th scope="col">FinBPMN</th>
</tr>
</thead>
<tbody>
<tr class="table-success">
<th scope="row">Detects and highlights various modeling faults and poor design solutions.</th>
<td></td>
<td>✓</td>
<td></td>
</tr>
<tr class="table-success">
<th scope="row">Users may hover highlights and get the detailed enough explanation what is wrong with a process element.</th>
<td></td>
<td>✓</td>
<td></td>
</tr>
<tr class="table-warning">
<th scope="row">Personal user workspace available after sign up.</th>
<td>✓</td>
<td></td>
<td></td>
</tr>
<tr class="table-warning">
<th scope="row">BPMN models storage/repository with advanced querying features.</th>
<td>✓</td>
<td></td>
<td></td>
</tr>
<tr class="table-warning">
<th scope="row">Advanced BPMN assessment features (configurable validation rules, improvement suggestions, and auto-correction of modeling "typos").</th>
<td></td>
<td>✓</td>
<td>✓</td>
</tr>
<tr class="table-warning">
<th scope="row">API for integration with major business process modeling and automation software.</th>
<td></td>
<td>✓</td>
<td>✓</td>
</tr>
<tr class="table-warning">
<th scope="row">DevOps-like pipeline for business process models with continuous quality assurance and deployment in a platform repository.</th>
<td>✓</td>
<td></td>
<td></td>
</tr>
<tr class="table-danger">
<th scope="row">Corporate user accounts with multiple roles and privileges.</th>
<td>✓</td>
<td></td>
<td></td>
</tr>
<tr class="table-danger">
<th scope="row">Integration with version control and bug-tracking systems.</th>
<td>✓</td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<p class="text-center text-muted ml-4 mr-4">
<span class="badge badge-success">Done</span>
<span class="badge badge-warning">In progress</span>
<span class="badge badge-danger">Planned</span>
</p>
</div>
<span id="industries"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">Industries</h1>
<p class="text-center text-muted ml-4 mr-4">Business process modeling and analysis are relevant for any industry
<br><a href="/services/storage/index.html?collection=https://raw.githubusercontent.com/freebpmnquality/apqc-pcf-bpmn-collection/main/etherbpmn-collection/07649a3505baa4e4cf1d07b4809d0b59b42d32afcbe886c473d87de82675e421.etherbpmn" target="_blank">Browse</a> the collection of cross-industry BPMN models based on APQC's Process Classification Framework® (PCF)</p>
<div class="ml-4 mr-4">
<div class="card-deck">
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/banking.jpg" class="card-img-top" alt="banking" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Banking & Finance</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/insurance.jpg" class="card-img-top" alt="insurance" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Insurance</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/wholesale.jpg" class="card-img-top" alt="wholesale" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Wholesale & Retail</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/manufacturing.jpg" class="card-img-top" alt="manufacturing" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Manufacturing</h5>
</div>
</div>
</div>
<div class="card-deck">
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/energy.jpg" class="card-img-top" alt="energy" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Energy</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/agriculture.jpg" class="card-img-top" alt="agriculture" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Agriculture</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/construction.jpg" class="card-img-top" alt="construction" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Engineering & Construction</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/administration.jpg" class="card-img-top" alt="administration" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Public Administration</h5>
</div>
</div>
</div>
<div class="card-deck">
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/healthcare.jpg" class="card-img-top" alt="healthcare" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Healthcare & Pharmaceutical</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/it.jpg" class="card-img-top" alt="it" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Information Technology</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/education.jpg" class="card-img-top" alt="education" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Education</h5>
</div>
</div>
<div class="card" style="border: none; background-color: transparent;">
<img height="240" src="images/industries/defense.jpg" class="card-img-top" alt="defense" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title text-center">Aerospace & Defense</h5>
</div>
</div>
</div>
</div>
<span id="services"></span>
<br>
<br>
<br>
<div class="text-center" id="quali-banner">
<h1 class="display-4 text-center">Services</h1>
<img src="/images/product.png" class="card-img-top" alt="qualibpmn" style="width: 60%;">
<h4>Comprehensive Digital Ecosystem for BPMN Models Exchange, Quality Analysis, and Cost Estimation</h4>
<a href="#service-plans" class="btn btn-info btn-lg mt-4" tabindex="-1" role="button" aria-disabled="true" style="border-radius: 1rem; font-weight: bold;">SEE PLANS</a>
</div>
<div class="row row-cols-1 row-cols-md-1 ml-2 mr-2">
<span id="detail-etherbpmn"></span>
<br>
<br>
<br>
<div class="col mb-4">
<div class="card card-bg" style="border-radius: 1rem;">
<div class="card-body text-center">
<img src="images/etherbpmn.png" class="card-img-top" alt="How EtherBPMN" style="width: 240px; border-radius: 1rem;">
<h5 class="card-title mt-2">How to share models?</h5>
<ul class="list-group list-group-flush">
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">1</span> Go to the <a href="/services/storage" target="_blank">homepage</a>.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">2</span> Click "Create collection" button.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">3</span> Use a form in the left side of a modal window to add pending models ("Link to a BPMN 2.0 file..." input).</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">4</span> If necessary, edit properties of pending models using "Model name", "Model annotation", and "Model industry" fields of each pending model.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">5</span> Use "Remove" button if necessary to remove certain pending model or use "Clear pending models" button to erase all pending models.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">6</span> If necessary, input the ULR of another EtherBPMN collection file to extend existing collection ("Link to the parent EtherBPMN collection file" input).</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">7</span> Use "Download collection file" to create and download EtherBPMN collection file of currently pending models.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">8</span> Make the collection file accessible by URL via the HTTP(S) protocol (e.g., you can treat a collection as the source code, by pushing it to your public GitHub repository and making
it accessible as the raw file).</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">9</span> Use the URL of a raw collection file in order to open it ("Link to the EtherBPMN collection file" input).</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">10</span> "Parent collection" link is shown for each collection that extends another collection.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">11</span> Use "Share" button to exchange collections with others.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">12</span> Inside the collection, models could be filtered using "Search..." input field by several properties.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">13</span> Each collection item can be clicked to see model information, download a BPMN 2.0 file, analyze model using <a href="/services/analytics/" target="_blank">QualiBPMN</a> service,
and estimate model implementation and fixing cost using <a href="/services/finance/" target="_blank">FinBPMN</a> service.</li>
</ul>
</div>
</div>
</div>
<span id="detail-qualibpmn"></span>
<br>
<br>
<br>
<div class="col mb-4">
<div class="card card-bg" style="border-radius: 1rem;">
<div class="card-body text-center">
<img src="images/qualibpmn.png" class="card-img-top" alt="How QualiBPMN" style="width: 240px; border-radius: 1rem;">
<h5 class="card-title mt-2">How to analyze models?</h5>
<p><a href="#service-plans" class="card-link text-muted">See plans</a></p>
<ul class="list-group list-group-flush">
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">1</span> Go to the <a href="/services/analytics/" target="_blank">homepage</a>.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">2</span> Clik "Drag & drop or click to upload the BPMN 2.0 file" and choose BPMN 2.0 file from your device.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">3</span> Move the slider to adjust model size.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">4</span> Hover element labels "Fault" to get tooltips that explain detected modeling mistakes.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">5</span> Click element labels "Fault" to get suggestions on defect fixing.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">6</span> Scroll down to see quality measures and recommendations below the diagram.</li>
</ul>
<span id="service-plans"></span>
<br>
<br>
<br>
<p class="lead text-muted mt-4 mb-2">Service Plans</p>
<div class="row">
<div class="col-sm-4">
<div class="card list-group-item-action mt-1" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title">User</h5>
<p class="card-text">
<span style="font-weight: bold; font-size: 24px;">$1 / month</span>
</p>
<a href="https://www.patreon.com/join/freebpmnquality" class="btn btn-primary btn-block mb-4" style="border-radius: 1rem; font-weight: bold;" target="_blank">Join</a>
<span class="text-muted">Kindly support us if our software tool helps you create high-quality BPMN business process models.</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card list-group-item-action mt-1" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title">Enjoyer</h5>
<p class="card-text">
<span style="font-weight: bold; font-size: 24px;">$3 / month</span>
</p>
<a href="https://www.patreon.com/join/freebpmnquality" class="btn btn-primary btn-block mb-4" style="border-radius: 1rem; font-weight: bold;" target="_blank">Join</a>
<span class="text-muted">Kindly support us if our software tool helps you create high-quality BPMN business process models.</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card list-group-item-action mt-1" style="border-radius: 1rem;">
<div class="card-body">
<h5 class="card-title">Fan</h5>
<p class="card-text">
<span style="font-weight: bold; font-size: 24px;">$5 / month</span>
</p>
<a href="https://www.patreon.com/join/freebpmnquality" class="btn btn-primary btn-block mb-4" style="border-radius: 1rem; font-weight: bold;" target="_blank">Join</a>
<span class="text-muted">Kindly support us if our software tool helps you create high-quality BPMN business process models.</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<span id="detail-finbpmn"></span>
<br>
<br>
<br>
<div class="col mb-4">
<div class="card card-bg" style="border-radius: 1rem;">
<div class="card-body text-center">
<img src="images/finbpmn.png" class="card-img-top" alt="How finBPMN" style="width: 240px; border-radius: 1rem;">
<h5 class="card-title mt-2">How to estimate models?</h5>
<ul class="list-group list-group-flush">
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">1</span> Go to the <a href="/services/finance/" target="_blank">homepage</a>.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">2</span> Clik "Open BPMN 2.0 File" and choose BPMN 2.0 file from your device.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">3</span> Enter the hourly wage and click "Recalculate" button if necessary.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">4</span> Scroll down to see general estimation results.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">5</span> Check out cost drivers depicted in BPMN diagram (move the slider to adjust model size). When hover "$$$" cost drivers tooltips are displayed.</li>
<li class="list-group-item list-group-item-action mb-1" style="border-radius: 1rem;"><span class="badge badge-pill badge-info">6</span> Scroll down to see estimation results by business processes.</li>
</ul>
</div>
</div>
</div>
</div>
<span id="usage"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">Usage</h1>
<p class="text-center text-muted ml-4 mr-4">How our services can be used together</p>
<div class="row row-cols-1 row-cols-md-2 ml-2 mr-2">
<div class="col mb-4">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<img src="images/use-1.png" class="card-img-top" alt="Use 1">
<p class="card-text text-center mt-4"><a href="/services/storage/index.html?collection=https://raw.githubusercontent.com/freebpmnquality/apqc-pcf-bpmn-collection/main/etherbpmn-collection/07649a3505baa4e4cf1d07b4809d0b59b42d32afcbe886c473d87de82675e421.etherbpmn&q=customer%20service&q=customer%20service"
target="_blank">Search</a> for a business process using APQC's PCF® taxonomy
<br><small class="text-muted">Each business process has a name and the numerical identifier that shows the process's location in the APQC's PCF® hierarchy.</small>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<img src="images/use-2.png" class="card-img-top" alt="Use 2">
<p class="card-text text-center mt-4">Get its reference BPMN model for adaptation and adjustment
<br><small class="text-muted">Reference process models are given as valid BPMN 2.0 files, however, they should be <a href="https://bpmtips.com/free-bpmn-modelling-tools-2020-edition/" target="_blank">tuned</a> according to the business needs.</small>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<img src="images/use-3.png" class="card-img-top" alt="Use 3">
<p class="card-text text-center mt-4"><a href="/services/analytics/index.html?doc=https://raw.githubusercontent.com/freebpmnquality/apqc-pcf-bpmn-collection/main/models/6.%20Manage%20Customer%20Service.bpmn" target="_blank">Analyze</a> this model to find extension and
improvement spots
<br><small class="text-muted">Whereas this linear model is syntactically perfect, it is semantically poor though and needs business-specific adjustments.</small>
</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<img src="images/use-4.png" class="card-img-top" alt="Use 4">
<p class="card-text text-center mt-4"><a href="/services/finance/index.html?doc=https://raw.githubusercontent.com/freebpmnquality/apqc-pcf-bpmn-collection/main/models/6.%20Manage%20Customer%20Service.bpmn" target="_blank">Estimate</a> implementation and maintenance costs
of this model
<br><small class="text-muted">Models undergo a rough estimation of the efforts and costs required for their deployment and fixing of possible defects.</small>
</p>
</div>
</div>
</div>
</div>
<div class="ml-4 mr-4">
<span id="motivation"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">Motivation</h1>
<p class="text-center text-muted">Who needs this service and why?</p>
<blockquote class="blockquote text-right">
<p class="mb-0">"If you automate a mess, you get an automated mess"</p>
<footer class="blockquote-footer">Rod Michael — <cite>Directory of Customer E-Business, Rockwell Automation</cite></footer>
</blockquote>
<blockquote class="blockquote text-right mt-4">
<p class="mb-0">"QualiBPMN — der Syntaxchecker von freebpmnquality" (in German)</p>
<footer class="blockquote-footer">Review in <cite title="Source Title"><a href="https://ebusiness2020.wordpress.com/2021/07/05/qualibpmn-der-syntax-checker-von-freebpmnquality/" target="_blank">E-BUSINESS</a></cite></footer>
</blockquote>
<blockquote class="blockquote text-muted">
<ul>
<li class="mb-0">Business process modeling helps organizations to represent scenarios of their activities in graphical way in order to find possible drawbacks, identify potential improvements, or just to instruct employees with detailed descriptions of
workflows they should follow.</li>
<li class="mb-0">Business process modeling requires certain training, but even experienced analysts that know literally everything about workflows under description may commit some mistakes: models could be redundant and workflow paths could be inconsistent,
which lead to poor quality models that are not understandable enough and barely modifiable.</li>
<li class="mb-0">Business process models of high quality are expected to be deployed and executed without errors that may lead to extra expenses and delays.</li>
</ul>
</blockquote>
</div>
<br>
<br>
<br>
<div class="text-center" id="doc-buttons">
<a href="whitepaper.pdf" class="btn btn-info btn-lg" tabindex="-1" role="button" aria-disabled="true" target="_blank" style="border-radius: 1rem; font-weight: bold;">WHITE PAPER</a>
</div>
<div class="ml-4 mr-4">
<span id="howtouse"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">How to check a BPMN model</h1>
<p class="text-center text-muted">Check out the steps outlined below or start using <a href="/services/analytics/" target="_blank">our BPMN analysis tool</a> immediately</p>
<div class="row row-cols-1 row-cols-md-2">
<div class="col mb-4">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<img src="images/step-1.png" class="card-img-top" alt="Step 1">
<p class="card-text text-center mt-4">Drag & drop BPMN 2.0 file or use file selection dialog</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<img src="images/step-2.png" class="card-img-top" alt="Step 2">
<p class="card-text text-center mt-4">Uploaded model is displayed with highlighted faults</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<img src="images/step-3.png" class="card-img-top" alt="Step 3">
<p class="card-text text-center mt-4">Highlighted weak spots can be hovered to get tooltips</p>
</div>
</div>
</div>
<div class="col mb-4">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<img src="images/step-4.png" class="card-img-top" alt="Step 4">
<p class="card-text text-center mt-4">Detected faults are explained in detail below canvas</p>
</div>
</div>
</div>
</div>
<blockquote class="blockquote text-center">
<p class="mb-0">Drag & drop BPMN 2.0 file directly to the web page</p>
<p class="mb-0">Or click the upload area to open file selection dialog</p>
<p class="mb-0">File name is displayed in the upload area</p>
<p class="mb-0">Zoom-in and zoom-out buttons with the help message are displayed</p>
<p class="mb-0">Uploaded model is displayed with already highlighted faults</p>
<p class="mb-0">Highlighted weak spots can be hovered to get tooltips</p>
<p class="mb-0">Detected faults are explained in detail below the BPMN diagram</p>
</blockquote>
</div>
<br>
<br>
<br>
<div id="how-to-banner">
<div class="text-center">
<a href="/services/analytics/" class="btn btn-info btn-lg" tabindex="-1" role="button" aria-disabled="true" style="border-radius: 1rem; font-weight: bold;" target="_blank">GOT IT! LET'S START!</a>
</div>
</div>
<div class="ml-4 mr-4">
<span id="roadmap"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">Roadmap</h1>
<p class="text-center text-muted">What is already done and what should be done in future</p>
<div class="list-group">
<div class="row">
<div class="col-sm-6" style="border-right: 1px dashed #6c757d;">
<div class="card" style="border-radius: 1rem;">
<div class="card-body">
<div class="list-group-item roadmap-card" style="border-radius: 1rem;">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1" style="font-weight: bold;"><span class="badge badge-warning badge-pill">01</span> Scientific Research Stage</h5>
<small class="text-muted">2016 — Ongoing</small>
</div>
<p class="mb-1">
Investigation on business process model quality analysis, estimation, and improvement. First results were published in
<a href="http://ceur-ws.org/Vol-2403/paper1.pdf" target="_blank">CEUR-WS Proceedings</a> of ICTERI 2019 PhD Symposium. Refined research paper on this topic were published in <a href="https://books.google.com.ua/books?id=HfzKDwAAQBAJ&lpg=PA111&dq=Intelligent%20Support%20of%20the%20Business%20Process%20Model%20Analysis%20and%20Improvement%20Method&hl=ru&pg=PA111#v=onepage&q&f=false"
target="_blank">Springer CCIS Volume</a>. Research is still in progress, however certain novel results have been already obtained.
<br> In future we are planning to came up with:
<ul>
<li>Advanced models and methods for detailed business process model analysis, configurable validation rules, and improvement suggestion.</li>
<li>Intelligent algorithms for auto-correction of typical modeling mistakes or "typos".</li>
<li>Semantic repository of assessed BPMN models powered by AI & ML models and methods.</li>
<li>Knowledge extraction algorithms and methods for advanced BPMN model querying.</li>
</ul>
</p>
<small class="text-muted">In progress</small>
</div>
</div>
</div>
</div>
<div class="col-sm-6 text-center" style="border-left: 1px dashed #6c757d;">
<img src="images/roadmap/rm01.png" style="max-width: 60%;" alt="research">
</div>
</div>
<div class="row">
<div class="col-sm-6 text-center" style="border-right: 1px dashed #6c757d;">
<img src="images/roadmap/rm02.png" style="max-width: 60%;" alt="idea">
</div>
<div class="col-sm-6" style="border-left: 1px dashed #6c757d;">
<div class="card mt-4" style="border-radius: 1rem;">
<div class="card-body">
<div class="list-group-item roadmap-card" style="border-radius: 1rem;">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1" style="font-weight: bold;"><span class="badge badge-success badge-pill">02</span> Idea Stage</h5>
<small class="text-muted">Summer 2019 — Spring 2020</small>
</div>
<p class="mb-1">
The idea of this service has grown from the PhD project of Andrii Kopp supervised by Dmytro Orlovskyi. After the dissertation was finished and defended, focus has shifted from theoretical issues to practical implementation.
<br> According to our idea:
<ul>
<li>This software could be developed as the web-service with the user-friendly interface and API for its integration with business process modeling and automation systems.</li>
<li>The basic features should be free-to-use, so customers get interested and involved by trying these features.</li>
<li>Advanced features, such as integration API, detailed model analysis, configurable validation rules, improvement suggestion, auto-correction of typical modeling mistakes or "typos", repository of assessed BPMN models,
and some others could be provided after subscription or one time purchase.
</li>
</ul>
</p>
<small class="text-muted">Done</small>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6" style="border-right: 1px dashed #6c757d;">
<div class="card mt-4" style="border-radius: 1rem;">
<div class="card-body">
<div class="list-group-item roadmap-card" style="border-radius: 1rem;">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1" style="font-weight: bold;"><span class="badge badge-warning badge-pill">03</span> Prototype Development Stage</h5>
<small class="text-muted">Autumn 2020 — Ongoing</small>
</div>
<p class="mb-1">
We already have developed initial prototype of this service. There are following features implemented:
<ul>
<li>Our solution is compatible with the de-facto standard of business process modeling — BPMN 2.0 (Business Process Model and Notation).</li>
<li>It is accessible and easy-to-use for all non-technical users involved into the business process modeling activity.</li>
<li>It can detect various modeling faults and poor design solutions, and highlight them on a model diagram, so users do not need to find which exactly element causes troubles.</li>
<li>Highlighted weak spots are interactive — users may hover them and the detailed enough explanation what is wrong with this element is provided.</li>
</ul>
</p>
<small class="text-muted">In progress</small>
</div>
</div>
</div>
</div>
<div class="col-sm-6 text-center" style="border-left: 1px dashed #6c757d;">
<img src="images/roadmap/rm03.png" style="max-width: 60%;" alt="development">
</div>
</div>
<div class="row">
<div class="col-sm-6 text-center" style="border-right: 1px dashed #6c757d;">
<img src="images/roadmap/rm04.png" style="max-width: 60%;" alt="mvp">
</div>
<div class="col-sm-6" style="border-left: 1px dashed #6c757d;">
<div class="card mt-4" style="border-radius: 1rem;">
<div class="card-body">
<div class="list-group-item roadmap-card" style="border-radius: 1rem;">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1" style="font-weight: bold;"><span class="badge badge-danger badge-pill">04</span> MVP Stage</h5>
<small class="text-muted">By Autumn 2021</small>
</div>
<p class="mb-1">
A minimum viable product should provide:
<ul>
<li>Personal user workspace available after sign up.</li>
<li>BPMN models storage/repository with advanced querying features.</li>
<li>Basic (from prototype) BPMN model assessment features.</li>
<li>Advanced BPMN model assessment features, such as configurable validation rules, improvement suggestions, and auto-correction of modeling "typos".</li>
<li>API for integration with major business process modeling and automation software.</li>
</ul>
</p>
<small class="text-muted">Planned</small>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6" style="border-right: 1px dashed #6c757d;">
<div class="card mt-4" style="border-radius: 1rem;">
<div class="card-body">
<div class="list-group-item roadmap-card">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1" style="font-weight: bold;"><span class="badge badge-danger badge-pill">05</span> Ready Product Stage</h5>
<small class="text-muted">By Winter 2022</small>
</div>
<p class="mb-1">
A ready for sell product should provide:
<ul>
<li>DevOps-like pipeline for business process models with continuous quality assurance and deployment in a platform repository.</li>
<li>Corporate user accounts with multiple roles and privileges.</li>
<li>Integration with version control and bug-tracking systems.</li>
<li>Finalization of business process model quality management digital ecosystem.</li>
</ul>
</p>
<small class="text-muted">Planned</small>
</div>
</div>
</div>
</div>
<div class="col-sm-6 text-center" style="border-left: 1px dashed #6c757d;">
<img src="images/roadmap/rm05.png" style="max-width: 60%;" alt="product">
</div>
</div>
</div>
</div>
<br>
<br>
<br>
<div class="text-center" id="automation-banner">
<div class="text-center">
<a href="https://sourceforge.net/projects/freebpmnquality/" class="btn btn-info btn-lg" tabindex="-1" role="button" aria-disabled="true" target="_blank" style="border-radius: 1rem; font-weight: bold;">DOWNLOAD</a>
</div>
</div>
<div class="ml-4 mr-4">
<span id="studies"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">Research Studies</h1>
<p class="text-center text-muted">Results of our major research studies</p>
<br>
<div class="row">
<div class="col-sm-6">
<blockquote class="blockquote">
<p class="mb-0">
<small>
Since business process modeling is considered as the foundation of Business Process Management, it is required to design understandable and modifiable process models used to analyze and improve depicted business processes. Therefore, this article proposes
a method for business process model analysis and improvement. The lifecycle of Business Process Management from business process modeling to applying the Business Intelligence and process mining techniques is considered. Existing
approaches to business process model analysis are reviewed. Proposed method is based on best practices in business process modeling, process model metrics, and corresponding thresholds. The usage of business process model metrics
and thresholds to formalize process modeling guidelines is outlined, as well as the procedure of business process model analysis and improvement is shown. The application of Business Intelligence techniques to support the proposed
method is demonstrated.
</small>
</p>
<footer class="blockquote-footer"><cite><a href="http://ceur-ws.org/Vol-2403/paper1.pdf">A Method for Business Process Model Analysis and Improvement</a></cite></footer>
</blockquote>
</div>
<div class="col-sm-6">
<blockquote class="blockquote">
<p class="mb-0">
<small>
Business process management has become the most widely-used and reliable approach to organizational management over the last decades. It is also considered as a part of quality management system in an organization. Business process modeling is the core of business process management, which is used for visualization, analysis, and improvement of organizational activities. Moreover, business process modeling plays an important role in the context of business process management maturity of an overall enterprise. Therefore, this paper is focused on the problem of business process model quality evaluation. Existing approaches based on the process modeling guidelines, measures and corresponding thresholds are reviewed, as well as the refined process modeling rules, corresponding quality criteria, the generalized quality criterion, and thresholds for its translation into linguistic values are proposed. The data model and software prototype are developed and the validation results are outlined.
</small>
</p>
<footer class="blockquote-footer"><cite><a href="http://ceur-ws.org/Vol-2791/2020200019.pdf">Towards the Generalized Criterion for Evaluation of Business Process Model Quality</a></cite></footer>
</blockquote>
</div>
</div>
</div>
<br>
<br>
<br>
<div class="text-center" id="kb-banner">
<div class="text-center">
<a href="kbase.html" class="btn btn-info btn-lg" tabindex="-1" role="button" aria-disabled="true" style="border-radius: 1rem; font-weight: bold;">KNOWLEDGE BASE</a>
</div>
</div>
<div class="ml-4 mr-4">
<span id="poweredby"></span>
<br>
<br>
<br>
<h1 class="display-4 text-center">Powered By</h1>
<p class="text-center text-muted">On which technology our service is based</p>
<br>
<div class="row">
<div class="col-sm-3">
<p class="text-center tech-card">
<img src="images/bootstrap.png" width="100"> <br>
</p>
<div class="card-body text-center">
<a class="text-muted" href="https://getbootstrap.com/" target="_blank">Bootstrap</a>
</div>
</div>
<div class="col-sm-3">
<p class="text-center tech-card">
<img src="images/js.png" width="100"> <br>
</p>
<div class="card-body text-center">
<a class="text-muted" href="https://nodejs.org" target="_blank">JavaScript</a>
</div>
</div>
<div class="col-sm-3">
<p class="text-center tech-card">
<img src="images/bpmn_io.png" width="100"> <br>
</p>
<div class="card-body text-center">
<a class="text-muted" href="https://github.com/bpmn-io" target="_blank">bpmn.io</a>
</div>
</div>
<div class="col-sm-3">
<p class="text-center tech-card">
<img src="images/github.png" width="100"> <br>
</p>
<div class="card-body text-center">
<a class="text-muted" href="https://pages.github.com/" target="_blank">GitHub Pages</a>
</div>
</div>
</div>
</div>
<br>
<br>