-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1803 lines (1759 loc) · 79.8 KB
/
index.html
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>
<title>OntoBPR: An ontological workflow for building permit review</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
#pylode {
position: fixed;
top: 130px;
left: -60px;
font-size: small;
transform: rotate(-90deg);
color: grey;
}
#pylode a {
font-size: 2em;
font-weight: bold;
text-decoration: none;
color: #005A9C;
}
#pylode a:hover {
color: #333;
}
.cardinality {
font-style: italic;
color: #aa00aa;
}
dt {
font-weight: bold;
padding: 5px 0 5px 0;
}
ul.hlist {
list-style-type: none;
border: 1px solid navy;
padding:5px;
background-color: #F4FFFF;
}
ul.hierarchy {
border: 1px solid navy;
padding: 5px 25px 5px 25px;
background-color: #F4FFFF;
}
ul.hlist li {
display: inline;
margin-right: 10px;
}
.entity {
border: 1px solid navy;
margin:5px 0 5px 0;
padding: 5px;
}
.entity th {
width: 150px;
vertical-align: top;
}
.entity th,
.entity td {
padding-bottom: 20px;
}
.entity table th {
text-align: left;
}
section#overview img {
max-width: 1000px;
}
h1, h2, h3, h4, h5, h6 {
text-align: left
}
h1, h2, h3 {
color: #005A9C; background: white
}
h1 {
font: 170% sans-serif;
line-height: 110%;
}
h2 {
font: 140% sans-serif;
margin-top:40px;
}
h3 {
font: 120% sans-serif;
margin-top: 3px;
padding-bottom: 5px;
border-bottom: 1px solid navy;
}
h4 { font: bold 100% sans-serif }
h5 { font: italic 100% sans-serif }
h6 { font: small-caps 100% sans-serif }
body {
padding: 2em 70px 2em 70px;
margin: 0;
font-family: sans-serif;
color: black;
background: white;
background-position: top left;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: justify;
}
section {
max-width: 1500px;
}
.figure {
margin-bottom: 20px;
}
:link { color: #00C; background: transparent }
:visited { color: #609; background: transparent }
a:active { color: #C00; background: transparent }
.sup-c,
.sup-op,
.sup-fp,
.sup-dp,
.sup-ap,
.sup-p,
.sup-ni,
.sup-cp,
.sup-cl {
cursor:help;
margin-left: 3px;
}
.sup-c {
color:orange;
}
.sup-op {
color:navy;
}
.sup-fp {
color:lightskyblue;
}
.sup-dp {
color:green;
}
.sup-ap {
color:darkred;
}
.sup-p {
color:black;
}
.sup-ni {
color:brown;
}
.sup-cp {
color:orange;
}
.sup-cl {
color:darkred;
}
code {
font-size: large;
color: darkred;
}
</style>
<script type="application/ld+json">
[
{
"@id": "https://w3id.org/ontobpr",
"@type": [
"https://schema.org/DefinedTermSet"
],
"https://schema.org/description": [
{
"@value": "<p>To avoid a digital disruption in planning buildings and structures, this research presents a workflow in which building codes are represented as machine-readable knowledge graphs and ontologies as an integration to the building permit review procedure and the participation process. Therefore, the building permit process was analyzed, and possible applications of ontology-based knowledge representations are explored. An ontology-based building permit review (OntoBPR) is proposed, reusing two existing ontologies for modeling the permit review workflow for representing the building codes. The OntoBPR ontology extends the approach with a connection to Information Containers for linked Document Delivery (ICDD) that are used for submitting the building application, and the Shapes Constraint Language (SHACL) of which rules are generated from the building code knowledge graphs.</p>"
}
],
"https://schema.org/name": [
{
"@value": "OntoBPR: An ontological workflow for building permit review"
}
]
}
]
</script>
</head>
<body>
<div id="pylode">made by <a href="http://github.com/rdflib/pyLODE">
<span style="color:#329545;">p</span><span style="color:#f9cb33;">y</span>LODE</a>
<span style="font-size:smaller;">2.4</span>
</div>
<h1>OntoBPR: An ontological workflow for building permit review</h1>
<section id="metadata">
<h2 style="display:none;">Metadata</h2>
<dl>
<dt>IRI</dt>
<dd><code>https://w3id.org/ontobpr</code></dd>
<dt>Creator(s)</dt>
<dd>
<a href="https://orcid.org/0000-0001-5808-695X">Sebastian Seiss</a>
<a href="https://orcid.org/0000-0001-5808-695X"><svg width="15px" height="15px" viewBox="0 0 72 72" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Orcid logo</title>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hero" transform="translate(-924.000000, -72.000000)" fill-rule="nonzero">
<g id="Group-4">
<g id="vector_iD_icon" transform="translate(924.000000, 72.000000)">
<path d="M72,36 C72,55.884375 55.884375,72 36,72 C16.115625,72 0,55.884375 0,36 C0,16.115625 16.115625,0 36,0 C55.884375,0 72,16.115625 72,36 Z" id="Path" fill="#A6CE39"></path>
<g id="Group" transform="translate(18.868966, 12.910345)" fill="#FFFFFF">
<polygon id="Path" points="5.03734929 39.1250878 0.695429861 39.1250878 0.695429861 9.14431787 5.03734929 9.14431787 5.03734929 22.6930505 5.03734929 39.1250878"></polygon>
<path d="M11.409257,9.14431787 L23.1380784,9.14431787 C34.303014,9.14431787 39.2088191,17.0664074 39.2088191,24.1486995 C39.2088191,31.846843 33.1470485,39.1530811 23.1944669,39.1530811 L11.409257,39.1530811 L11.409257,9.14431787 Z M15.7511765,35.2620194 L22.6587756,35.2620194 C32.49858,35.2620194 34.7541226,27.8438084 34.7541226,24.1486995 C34.7541226,18.1301509 30.8915059,13.0353795 22.4332213,13.0353795 L15.7511765,13.0353795 L15.7511765,35.2620194 Z" id="Shape"></path>
<path d="M5.71401206,2.90182329 C5.71401206,4.441452 4.44526937,5.72914146 2.86638958,5.72914146 C1.28750978,5.72914146 0.0187670918,4.441452 0.0187670918,2.90182329 C0.0187670918,1.33420133 1.28750978,0.0745051096 2.86638958,0.0745051096 C4.44526937,0.0745051096 5.71401206,1.36219458 5.71401206,2.90182329 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg></a>
(<a href="mailto:sebastian.seiss@uni-weimar.de">sebastian.seiss@uni-weimar.de</a>) of
<a href="https://www.uni-weimar.de/de/bau-und-umwelt/professuren/baubetrieb-und-bauverfahren/personen/sebastian-seiss-msc/">Bauhaus-Universitaet Weimar, DE</a><br/>
<a href="https://orcid.org/0000-0001-6058-7614">Sven Zentgraf</a>
<a href="https://orcid.org/0000-0001-6058-7614"><svg width="15px" height="15px" viewBox="0 0 72 72" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Orcid logo</title>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hero" transform="translate(-924.000000, -72.000000)" fill-rule="nonzero">
<g id="Group-4">
<g id="vector_iD_icon" transform="translate(924.000000, 72.000000)">
<path d="M72,36 C72,55.884375 55.884375,72 36,72 C16.115625,72 0,55.884375 0,36 C0,16.115625 16.115625,0 36,0 C55.884375,0 72,16.115625 72,36 Z" id="Path" fill="#A6CE39"></path>
<g id="Group" transform="translate(18.868966, 12.910345)" fill="#FFFFFF">
<polygon id="Path" points="5.03734929 39.1250878 0.695429861 39.1250878 0.695429861 9.14431787 5.03734929 9.14431787 5.03734929 22.6930505 5.03734929 39.1250878"></polygon>
<path d="M11.409257,9.14431787 L23.1380784,9.14431787 C34.303014,9.14431787 39.2088191,17.0664074 39.2088191,24.1486995 C39.2088191,31.846843 33.1470485,39.1530811 23.1944669,39.1530811 L11.409257,39.1530811 L11.409257,9.14431787 Z M15.7511765,35.2620194 L22.6587756,35.2620194 C32.49858,35.2620194 34.7541226,27.8438084 34.7541226,24.1486995 C34.7541226,18.1301509 30.8915059,13.0353795 22.4332213,13.0353795 L15.7511765,13.0353795 L15.7511765,35.2620194 Z" id="Shape"></path>
<path d="M5.71401206,2.90182329 C5.71401206,4.441452 4.44526937,5.72914146 2.86638958,5.72914146 C1.28750978,5.72914146 0.0187670918,4.441452 0.0187670918,2.90182329 C0.0187670918,1.33420133 1.28750978,0.0745051096 2.86638958,0.0745051096 C4.44526937,0.0745051096 5.71401206,1.36219458 5.71401206,2.90182329 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg></a>
(<a href="mailto:sven.zentgraf@rub.de">sven.zentgraf@rub.de</a>) of
<a href="https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/sven_zentgraf.html.en">Ruhr University Bochum, DE</a><br/>
<a href="https://orcid.org/0000-0002-6249-243X">Dr. Philipp Hagedorn</a>
<a href="https://orcid.org/0000-0002-6249-243X"><svg width="15px" height="15px" viewBox="0 0 72 72" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Orcid logo</title>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hero" transform="translate(-924.000000, -72.000000)" fill-rule="nonzero">
<g id="Group-4">
<g id="vector_iD_icon" transform="translate(924.000000, 72.000000)">
<path d="M72,36 C72,55.884375 55.884375,72 36,72 C16.115625,72 0,55.884375 0,36 C0,16.115625 16.115625,0 36,0 C55.884375,0 72,16.115625 72,36 Z" id="Path" fill="#A6CE39"></path>
<g id="Group" transform="translate(18.868966, 12.910345)" fill="#FFFFFF">
<polygon id="Path" points="5.03734929 39.1250878 0.695429861 39.1250878 0.695429861 9.14431787 5.03734929 9.14431787 5.03734929 22.6930505 5.03734929 39.1250878"></polygon>
<path d="M11.409257,9.14431787 L23.1380784,9.14431787 C34.303014,9.14431787 39.2088191,17.0664074 39.2088191,24.1486995 C39.2088191,31.846843 33.1470485,39.1530811 23.1944669,39.1530811 L11.409257,39.1530811 L11.409257,9.14431787 Z M15.7511765,35.2620194 L22.6587756,35.2620194 C32.49858,35.2620194 34.7541226,27.8438084 34.7541226,24.1486995 C34.7541226,18.1301509 30.8915059,13.0353795 22.4332213,13.0353795 L15.7511765,13.0353795 L15.7511765,35.2620194 Z" id="Shape"></path>
<path d="M5.71401206,2.90182329 C5.71401206,4.441452 4.44526937,5.72914146 2.86638958,5.72914146 C1.28750978,5.72914146 0.0187670918,4.441452 0.0187670918,2.90182329 C0.0187670918,1.33420133 1.28750978,0.0745051096 2.86638958,0.0745051096 C4.44526937,0.0745051096 5.71401206,1.36219458 5.71401206,2.90182329 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg></a>
(<a href="mailto:philipp.hagedorn-n6v@rub.de">philipp.hagedorn-n6v@rub.de</a>) of
<a href="https://www.inf.bi.ruhr-uni-bochum.de/iib/lehrstuhl/mitarbeiter/philipp_hagedorn.html.en">Ruhr University Bochum, DE</a><br/>
<a href="https://orcid.org/0000-0002-9078-8393">Dr. Judith Fauth</a>
<a href="https://orcid.org/0000-0002-9078-8393"><svg width="15px" height="15px" viewBox="0 0 72 72" version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<title>Orcid logo</title>
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="hero" transform="translate(-924.000000, -72.000000)" fill-rule="nonzero">
<g id="Group-4">
<g id="vector_iD_icon" transform="translate(924.000000, 72.000000)">
<path d="M72,36 C72,55.884375 55.884375,72 36,72 C16.115625,72 0,55.884375 0,36 C0,16.115625 16.115625,0 36,0 C55.884375,0 72,16.115625 72,36 Z" id="Path" fill="#A6CE39"></path>
<g id="Group" transform="translate(18.868966, 12.910345)" fill="#FFFFFF">
<polygon id="Path" points="5.03734929 39.1250878 0.695429861 39.1250878 0.695429861 9.14431787 5.03734929 9.14431787 5.03734929 22.6930505 5.03734929 39.1250878"></polygon>
<path d="M11.409257,9.14431787 L23.1380784,9.14431787 C34.303014,9.14431787 39.2088191,17.0664074 39.2088191,24.1486995 C39.2088191,31.846843 33.1470485,39.1530811 23.1944669,39.1530811 L11.409257,39.1530811 L11.409257,9.14431787 Z M15.7511765,35.2620194 L22.6587756,35.2620194 C32.49858,35.2620194 34.7541226,27.8438084 34.7541226,24.1486995 C34.7541226,18.1301509 30.8915059,13.0353795 22.4332213,13.0353795 L15.7511765,13.0353795 L15.7511765,35.2620194 Z" id="Shape"></path>
<path d="M5.71401206,2.90182329 C5.71401206,4.441452 4.44526937,5.72914146 2.86638958,5.72914146 C1.28750978,5.72914146 0.0187670918,4.441452 0.0187670918,2.90182329 C0.0187670918,1.33420133 1.28750978,0.0745051096 2.86638958,0.0745051096 C4.44526937,0.0745051096 5.71401206,1.36219458 5.71401206,2.90182329 Z" id="Path"></path>
</g>
</g>
</g>
</g>
</g>
</svg></a>
(<a href="mailto:jf805@cam.ac.uk">jf805@cam.ac.uk</a>) of
<a href="https://www.linkedin.com/in/judith-fauth-5b5137bb">University of Cambridge, GB</a><br/>
</dd>
<dt>Ontology RDF</dt>
<dd><a href="ontobpr.ttl">RDF (turtle)</a></dd>
</dl>
<h2>Description</h2>
<div id="description">
<p>To avoid a digital disruption in planning buildings and structures, this research presents a workflow in which building codes are represented as machine-readable knowledge graphs and ontologies as an integration to the building permit review procedure and the participation process. Therefore, the building permit process was analyzed, and possible applications of ontology-based knowledge representations are explored. An ontology-based building permit review (OntoBPR) is proposed, reusing two existing ontologies for modeling the permit review workflow for representing the building codes. The OntoBPR ontology extends the approach with a connection to Information Containers for linked Document Delivery (ICDD) that are used for submitting the building application, and the Shapes Constraint Language (SHACL) of which rules are generated from the building code knowledge graphs.</p>
<a href="http://oops.linkeddata.es"><img
src="https://oops.linkeddata.es/images/conformance/oops_free.png"
alt="Free of pitfalls" height="69.6" width="100" />
</div>
</section>
<section id="toc">
<h2>Table of Contents</h2>
<ol>
<li><a href="#classes">Classes</a></li>
<li><a href="#objectproperties">Object Properties</a></li>
<li><a href="#datatypeproperties">Datatype Properties</a></li>
<li><a href="#namedindividuals">Named Individuals</a></li>
<li><a href="#namespaces">Namespaces</a></li>
<li><a href="#legend">Legend</a></li>
</ol>
</section>
<section id="overview">
<h2>Overview</h2>
<div class="figure">
<img style="width:700px; " src="ontobpr-1.png">
<div class="caption"><strong>Figure 1:</strong> Ontology overview</div>
</div>
<div class="figure">
<img style="width:700px; " src="ontobpr-2.png">
<div class="caption"><strong>Figure 2:</strong> Defined activities</div>
</div>
<div class="figure">
<img style="width:700px; " src="ontobpr-3.png">
<div class="caption"><strong>Figure 3:</strong> Content review with OntoBPR</div>
</div>
</section>
<section id="classes">
<h2>Classes <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hlist">
<li><a href="#(1)Formalreview">(1) Formal review</a></li>
<li><a href="#(1.1)Completenesscheck">(1.1) Completeness check </a></li>
<li><a href="#(1.2)Reviewpreparation">(1.2) Review preparation </a></li>
<li><a href="#(2)Assignment">(2) Assignment</a></li>
<li><a href="#(3)Participation">(3) Participation </a></li>
<li><a href="#(4)Contentreview">(4) Content review </a></li>
<li><a href="#(5)Issuingnotificationletter">(5) Issuing notification letter </a></li>
<li><a href="#(5.1)Requestreviewresults">(5.1) Request review results </a></li>
<li><a href="#(5.2a)Positivepermitdecision">(5.2a) Positive permit decision </a></li>
<li><a href="#(5.2b)Negativepermitdecision">(5.2b) Negative permit decision </a></li>
<li><a href="#(5.3a)Formulationofcondition">(5.3a) Formulation of condition </a></li>
<li><a href="#(5.3b)Justificationofnegativedecision">(5.3b) Justification of negative decision </a></li>
<li><a href="#(5.4)Creatingnotificationletter">(5.4) Creating notification letter</a></li>
<li><a href="#Activity">Activity</a></li>
<li><a href="#Building">Building</a></li>
<li><a href="#Buildingapplication">Building application</a></li>
<li><a href="#Buildingauthority">Building authority</a></li>
<li><a href="#Condition">Condition</a></li>
<li><a href="#Dictionary">Dictionary</a></li>
<li><a href="#Justification">Justification</a></li>
<li><a href="#Reviewcheckingresult">Review checking result</a></li>
<li><a href="#Reviewstatement">Review statement</a></li>
<li><a href="#Reviewstatus">Review status</a></li>
<li><a href="#SHACLshapesset">SHACL shapes set</a></li>
</ul>
<div class="entity class" id="Activity">
<h3>Activity<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#Activity</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>an Activity executed throughout the building permit review</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2002/07/owl#Thing">owl:Thing</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#iscompleted">ontobpr:isCompleted</a><sup class="sup-dp" title="datatype property">dp</sup> <span class="cardinality">exactly</span> 1<br/>
</td>
</tr>
<tr>
<th>Sub-classes</th>
<td>
<a href="#(2)Assignment">ontobpr:Assignment</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(5.2a)Positivepermitdecision">ontobpr:PositivePermitDecision</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(1.2)Reviewpreparation">ontobpr:ReviewPreparation</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(5.4)Creatingnotificationletter">ontobpr:CreatingNotificationLetter</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(5)Issuingnotificationletter">ontobpr:IssuingNotificationLetter</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(5.3a)Formulationofcondition">ontobpr:FormulationOfCondition</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(5.3b)Justificationofnegativedecision">ontobpr:JustificationOfNegativeDecision</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(4)Contentreview">ontobpr:ContentReview</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(5.1)Requestreviewresults">ontobpr:RequestReviewResults</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(1.1)Completenesscheck">ontobpr:CompletenessCheck</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(3)Participation">ontobpr:Participation</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(5.2b)Negativepermitdecision">ontobpr:NegativePermitDecision</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#(1)Formalreview">ontobpr:FormalReview</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#iscompleted">ontobpr:isCompleted</a><sup class="sup-dp" title="datatype property">dp</sup><br/>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#hascurrentactivity">ontobpr:hasCurrentActivity</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#belongstoactivity">ontobpr:belongsToActivity</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(2)Assignment">
<h3>(2) Assignment<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#Assignment</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Assignment activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#(1)Formalreview">ontobpr:FormalReview</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Building">
<h3>Building<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#Building</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>The building that is subject of this building application</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2002/07/owl#Thing">owl:Thing</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasbuildingdocument">ontobpr:hasBuildingDocument</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="https://standards.iso.org/iso/21597/-1/ed-1/en/Container#Document">ct:Document</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasbuildingdocument">ontobpr:hasBuildingDocument</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Buildingapplication">
<h3>Building application<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#BuildingApplication</code></td>
</tr>
<tr>
<th>Is Defined By</th>
<td>
https://w3id.org/obpa#BuildingApplication
</td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the building application that is submitted by an applicant for review</p>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasstatus">ontobpr:hasStatus</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#Reviewstatus">ontobpr:ReviewStatus</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#hasbuildingapplicationcontainer">ontobpr:hasBuildingApplicationContainer</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="https://standards.iso.org/iso/21597/-1/ed-1/en/Container#ContainerDescription">ct:ContainerDescription</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#hasstatement">ontobpr:hasStatement</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Reviewstatement">ontobpr:ReviewStatement</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#hasapplicationdocument">ontobpr:hasApplicationDocument</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="https://standards.iso.org/iso/21597/-1/ed-1/en/Container#Document">ct:Document</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#hascurrentactivity">ontobpr:hasCurrentActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#hascheckingresults">ontobpr:hasCheckingResults</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="#Reviewcheckingresult">ontobpr:ReviewResult</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasbuildingapplicationcontainer">ontobpr:hasBuildingApplicationContainer</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasdocument">ontobpr:hasDocument</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasstatus">ontobpr:hasStatus</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hascurrentactivity">ontobpr:hasCurrentActivity</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasapplicationdocument">ontobpr:hasApplicationDocument</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hasstatement">ontobpr:hasStatement</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#hascheckingresults">ontobpr:hasCheckingResults</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#applies">ontobpr:applies</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Buildingauthority">
<h3>Building authority<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#BuildingAuthority</code></td>
</tr>
<tr>
<th>Is Defined By</th>
<td>
https://w3id.org/obpa#BuildingAuthority
</td>
</tr>
<tr>
<th>Description</th>
<td>
<p>a building authority that is involved in a building permit review</p>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#checks">ontobpr:checks</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Dictionary">
<h3>Dictionary<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#BuildingCodeDictionary</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>A dictionary containing properties and shapes from a building code</p>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasshapesset">ontobpr:hasShapesSet</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#SHACLshapesset">ontobpr:ShaclShapesSet</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In domain of</th>
<td>
<a href="#hasshapesset">ontobpr:hasShapesSet</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>
<td>
<a href="#checks">ontobpr:checks</a><sup class="sup-op" title="object property">op</sup><br/>
<a href="#applies">ontobpr:applies</a><sup class="sup-op" title="object property">op</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(1.1)Completenesscheck">
<h3>(1.1) Completeness check <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#CompletenessCheck</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Completeness check activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hasshapesset">ontobpr:hasShapesSet</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#SHACLshapesset">ontobpr:ShaclShapesSet</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Condition">
<h3>Condition<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#Condition</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>a formulated condition statement of a conditionally accepted application</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Reviewstatement">ontobpr:ReviewStatement</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(4)Contentreview">
<h3>(4) Content review <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#ContentReview</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>The Content review activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#(1)Formalreview">ontobpr:FormalReview</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(5.4)Creatingnotificationletter">
<h3>(5.4) Creating notification letter<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#CreatingNotificationLetter</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>The Creating notification letter activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1 <a href="#(5.3a)Formulationofcondition">ontobpr:FormulationOfCondition</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1 <a href="#(5.3b)Justificationofnegativedecision">ontobpr:JustificationOfNegativeDecision</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(1)Formalreview">
<h3>(1) Formal review<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#FormalReview</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>The Formal review activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/obpa#hasSubActivity">obpa:hasSubActivity</a> <span class="cardinality">exactly</span> 1 <a href="#(1.2)Reviewpreparation">ontobpr:ReviewPreparation</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/obpa#hasSubActivity">obpa:hasSubActivity</a> <span class="cardinality">exactly</span> 1 <a href="#(1.1)Completenesscheck">ontobpr:CompletenessCheck</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(5.3a)Formulationofcondition">
<h3>(5.3a) Formulation of condition <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#FormulationOfCondition</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Formulation of condition activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#(5.2a)Positivepermitdecision">ontobpr:PositivePermitDecision</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(5)Issuingnotificationletter">
<h3>(5) Issuing notification letter <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#IssuingNotificationLetter</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Issuing notification letter activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="https://w3id.org/obpa#hasSubActivity">obpa:hasSubActivity</a> <span class="cardinality">max</span> 1 <a href="#(5.3b)Justificationofnegativedecision">ontobpr:JustificationOfNegativeDecision</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/obpa#hasSubActivity">obpa:hasSubActivity</a> <span class="cardinality">exactly</span> 1 <a href="#(5.4)Creatingnotificationletter">ontobpr:CreatingNotificationLetter</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1 <a href="#(2)Assignment">ontobpr:Assignment</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/obpa#hasSubActivity">obpa:hasSubActivity</a> <span class="cardinality">max</span> 1 <a href="#(5.3a)Formulationofcondition">ontobpr:FormulationOfCondition</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1 <a href="#(3)Participation">ontobpr:Participation</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/obpa#hasSubActivity">obpa:hasSubActivity</a> <span class="cardinality">max</span> 1 <a href="#(5.2b)Negativepermitdecision">ontobpr:NegativePermitDecision</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/obpa#hasSubActivity">obpa:hasSubActivity</a> <span class="cardinality">max</span> 1 <a href="#(5.2a)Positivepermitdecision">ontobpr:PositivePermitDecision</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/obpa#hasSubActivity">obpa:hasSubActivity</a> <span class="cardinality">exactly</span> 1 <a href="#(5.1)Requestreviewresults">ontobpr:RequestReviewResults</a><sup class="sup-c" title="class">c</sup><br/>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">max</span> 1 <a href="#(4)Contentreview">ontobpr:ContentReview</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Justification">
<h3>Justification<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#Justification</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>justification statement of a negative building permit review decision</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Reviewstatement">ontobpr:ReviewStatement</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(5.3b)Justificationofnegativedecision">
<h3>(5.3b) Justification of negative decision <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#JustificationOfNegativeDecision</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Justification of negative decision activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#(5.2b)Negativepermitdecision">ontobpr:NegativePermitDecision</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(5.2b)Negativepermitdecision">
<h3>(5.2b) Negative permit decision <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#NegativePermitDecision</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Negative permit decision activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#(5.1)Requestreviewresults">ontobpr:RequestReviewResults</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(3)Participation">
<h3>(3) Participation <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#Participation</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Participation activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#(1)Formalreview">ontobpr:FormalReview</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(5.2a)Positivepermitdecision">
<h3>(5.2a) Positive permit decision <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#PositivePermitDecision</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Positive permit decision activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#(5.1)Requestreviewresults">ontobpr:RequestReviewResults</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(5.1)Requestreviewresults">
<h3>(5.1) Request review results <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#RequestReviewResults</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Request review results activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="(1.2)Reviewpreparation">
<h3>(1.2) Review preparation <sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#ReviewPreparation</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the Review preparation activity</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="#Activity">ontobpr:Activity</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#afteractivity">ontobpr:afterActivity</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">exactly</span> 1 <a href="#(1.1)Completenesscheck">ontobpr:CompletenessCheck</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity class" id="Reviewcheckingresult">
<h3>Review checking result<sup title="class" class="sup-c">c</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>https://w3id.org/ontobpr#ReviewResult</code></td>
</tr>
<tr>
<th>Description</th>
<td>
<p>the review result of a particular agent incorporating a sh:ValidationReport</p>
</td>
</tr>
<tr>
<th>Super-classes</th>
<td>
<a href="http://www.w3.org/2002/07/owl#Thing">owl:Thing</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>Restrictions</th>
<td>
<a href="#hascheckingresults">ontobpr:hasCheckingResults</a><sup class="sup-op" title="object property">op</sup> <span class="cardinality">some</span> <a href="http://www.w3.org/ns/shacl#ValidationReport">sh:ValidationReport</a><sup class="sup-c" title="class">c</sup><br/>
<a href="http://purl.org/dc/terms/issued">dcterms:issued</a> <span class="cardinality">exactly</span> 1 <a href="http://www.w3.org/2001/XMLSchema#date">xsd:date</a><sup class="sup-c" title="class">c</sup><br/>
<a href="https://w3id.org/obpa#hasAgent">obpa:hasAgent</a> <span class="cardinality">exactly</span> 1 <a href="https://w3id.org/obpa#Agent">obpa:Agent</a><sup class="sup-c" title="class">c</sup><br/>
</td>
</tr>
<tr>
<th>In range of</th>