sbol 0.1.0

Rust implementation of the SBOL 3.1.0 specification.
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
[meta]
spec_version = "3.1.0"
spec_path = "spec/SBOL3.1.0.md"
spec_canonical_url = "https://sbolstandard.org/datamodel-specification/version-3.1.0/"
spec_pdf_sha256 = "7c1ef88f83b8fff98acd07c742b377bbb8618508684b7dab17032396667f0b2c"

[[rule]]
id = "sbol3-10101"
status = "Configurable"
normative_severity = "MUST"
spec_section = "5.1"
note = "local Identified object identities must be IRIs; global URI uniqueness outside the document is not proven"
blocker = "External"
validator_function = "validate_top_level"

[[rule]]
id = "sbol3-10102"
status = "Error"
normative_severity = "MUST"
spec_section = "5.1"
note = "TopLevel URL pattern is checked for local URL identities"
validator_function = "validate_top_level_url_pattern"

[[rule]]
id = "sbol3-10103"
status = "Error"
normative_severity = "MUST"
spec_section = "5.1"
note = "TopLevel URL prefix collisions are checked within the document"
validator_function = "validate_top_level_url_prefixes"

[[rule]]
id = "sbol3-10104"
status = "Error"
normative_severity = "MUST"
spec_section = "5.1"
note = "child URL pattern is checked for composite child references"
validator_function = "validate_child_url_patterns"

[[rule]]
id = "sbol3-10105"
status = "Configurable"
blocker = "Policy"
normative_severity = "MUST"
spec_section = "5.2"
note = "unknown SBOL predicates and rdf:type IRIs are checked locally"
validator_function = "validate_sbol_namespace"

[[rule]]
id = "sbol3-10106"
status = "Error"
normative_severity = "MUST"
spec_section = "5.4"
note = "disjoint SBOL class combinations are rejected"
validator_function = "validate_sbol_types"

[[rule]]
id = "sbol3-10107"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "5.4"
note = "multiple concrete SBOL rdf:type values are warnings when not disjoint"
validator_function = "validate_sbol_types"

[[rule]]
id = "sbol3-10108"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "5.4"
note = "SBOL properties without SBOL rdf:type produce warnings"
validator_function = "validate_sbol_namespace"

[[rule]]
id = "sbol3-10109"
status = "Error"
normative_severity = "MUST"
spec_section = "5.2"
note = "allowed SBOL properties are table-driven"
validator_function = "validate_sbol_namespace"

[[rule]]
id = "sbol3-10110"
status = "Error"
normative_severity = "MUST"
spec_section = "4.2"
note = "Table 23 cardinality is table-driven"
validator_function = "validate_property_spec"

[[rule]]
id = "sbol3-10111"
status = "Error"
normative_severity = "MUST"
spec_section = "5.3"
note = "Table 23 value kinds are enforced with strict XSD datatype + lexical-form checks"
validator_function = "validate_property_spec"

[[rule]]
id = "sbol3-10112"
status = "Error"
normative_severity = "MUST"
spec_section = "5.3"
note = "local child references are checked"
validator_function = "validate_property_spec"

[[rule]]
id = "sbol3-10113"
status = "Configurable"
blocker = "Resolver"
normative_severity = "MUST"
spec_section = "5.3"
note = "non-local references are checked when targets are present in the document"
validator_function = "validate_external_top_level_reference"

[[rule]]
id = "sbol3-10114"
status = "Configurable"
blocker = "Resolver"
normative_severity = "SHOULD"
spec_section = "5.3"
note = "resolver-aware validation can warn on unresolved external TopLevel references and reject resolved wrong target classes; default validation remains offline"
validator_function = "validate_external_top_level_reference"

[[rule]]
id = "sbol3-10201"
status = "Error"
normative_severity = "MUST"
spec_section = "6.1"
note = "displayId lexical form is checked"
validator_function = "validate_display_id"

[[rule]]
id = "sbol3-10202"
status = "Error"
normative_severity = "MUST"
spec_section = "6.1"
note = "self derivation is checked"
validator_function = "validate_display_id"

[[rule]]
id = "sbol3-10203"
status = "Error"
normative_severity = "MUST"
spec_section = "6.1"
note = "wasDerivedFrom cycles are checked within the document"
validator_function = "validate_derived_from_cycles"

[[rule]]
id = "sbol3-10204"
status = "Error"
normative_severity = "MUST"
spec_section = "6.1"
note = "wasGeneratedBy / Usage.entity cycles are checked within the document; cross-document detection is deferred"
validator_function = "validate_was_generated_by_cycles"

[[rule]]
id = "sbol3-10205"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.1"
note = "workflow role recommendation requires Table 20 and 21 policy"
validator_function = "validate_workflow_rules"

[[rule]]
id = "sbol3-10301"
status = "Error"
normative_severity = "MUST"
spec_section = "6.2"
note = "http and https TopLevel namespace prefix is checked"
validator_function = "validate_top_level"

[[rule]]
id = "sbol3-10501"
status = "Error"
normative_severity = "MUST"
spec_section = "6.3"
note = "Sequence elements requires encoding"
validator_function = "validate_sequence"

[[rule]]
id = "sbol3-10502"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.3"
note = "bundled ontology facts reject known terms that are not Sequence encoding terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_sequence"

[[rule]]
id = "sbol3-10503"
status = "Configurable"
blocker = "Ontology"
normative_severity = "MUST"
spec_section = "6.3"
note = "IUPAC nucleotide and protein alphabets are checked for Table 1 EDAM encodings"
validator_function = "validate_sequence"

[[rule]]
id = "sbol3-10504"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.3"
note = "known aliases of exact Table 1 sequence encodings require the preferred SBOL Table 1 URI; broader well-described-by reasoning is deferred"
blocker = "Ontology"
validator_function = "validate_sequence"

[[rule]]
id = "sbol3-10505"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.3"
note = "bundled ontology facts warn when a known encoding term is outside the EDAM textual format branch; unknown/custom terms remain undecided"
validator_function = "validate_sequence"

[[rule]]
id = "sbol3-10601"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4"
note = "Component type values from Table 2 are counted"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10602"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "bundled ontology facts classify known Component type and type-modifier terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10603"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "well-described-by ontology rule is not locally decidable"
blocker = "Ontology"

[[rule]]
id = "sbol3-10604"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "6.4"
note = "Component type IRIs that resolve to known SBO terms outside the SBO:0000236 physical entity representation branch produce warnings; unknown IRIs remain undecided"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10605"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "bundled ontology facts detect conflicts between known Component type families; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10606"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "default validation remains undecided, but topology-complete validation rejects DNA/RNA objects without a known SO topology term"
blocker = "Policy"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10607"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4"
note = "bundled SO branch facts warn when explicit DNA/RNA type values include more than one known topology term"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10608"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4"
note = "bundled SO branch facts warn when known topology or strand terms appear without an explicit DNA/RNA type"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10609"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "bundled ontology branch facts reject known Component roles that are locally decidable as incompatible with known Table 2 types; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10610"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "bundled ontology facts classify known Component role terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10611"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "well-described-by role rule is not locally decidable"
blocker = "Ontology"

[[rule]]
id = "sbol3-10612"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4"
note = "bundled SO sequence-feature branch facts warn when known SO feature roles appear without an explicit DNA/RNA type"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10613"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4"
note = "bundled SO sequence-feature branch facts warn when explicit DNA/RNA types do not have exactly one known SO feature role; unknown/custom roles remain undecided"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10614"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "local Sequence encodings and Component types present in bundled ontology facts are checked for compatibility; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_component_sequence_type_compatibility"

[[rule]]
id = "sbol3-10615"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "known local Sequence encoding families from bundled ontology facts are checked for conflicts"
blocker = "Ontology"
validator_function = "validate_component_sequence_encoding_conflicts"

[[rule]]
id = "sbol3-10616"
status = "Configurable"
blocker = "Ontology"
normative_severity = "MUST"
spec_section = "6.4"
note = "known local Component types with bundled cross-listing facts require a compatible known local Sequence encoding when all local sequence encodings are known"
validator_function = "validate_component_required_sequence_encoding"

[[rule]]
id = "sbol3-10617"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.4"
note = "local Sequence objects with the same exact encoding warn when literal elements differ"
validator_function = "validate_component_same_encoding_elements"

[[rule]]
id = "sbol3-10701"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1"
note = "bundled ontology facts classify known Feature role terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_feature_roles"

[[rule]]
id = "sbol3-10702"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1"
note = "orientation vocabulary is checked"
validator_function = "validate_feature_vocabularies"

[[rule]]
id = "sbol3-10801"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.1"
note = "roleIntegration vocabulary is checked"
validator_function = "validate_feature_vocabularies"

[[rule]]
id = "sbol3-10802"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.1"
note = "SubComponent roles require roleIntegration"
validator_function = "validate_feature_vocabularies"

[[rule]]
id = "sbol3-10803"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.1"
note = "SubComponent cannot instanceOf containing Component"
validator_function = "validate_sub_component"

[[rule]]
id = "sbol3-10804"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.1"
note = "component instanceOf cycles are checked"
validator_function = "validate_component_instance_cycles"

[[rule]]
id = "sbol3-10805"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.1"
note = "SubComponent location overlap is checked for ranges"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-10806"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.1"
note = "SubComponent location and sourceLocation lengths are compared when known"
validator_function = "validate_sub_component_location_lengths"

[[rule]]
id = "sbol3-10807"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.1"
note = "SubComponent location coverage of instanceOf sequence is checked when known"
validator_function = "validate_sub_component_location_lengths"

[[rule]]
id = "sbol3-10901"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.2"
note = "ComponentReference inChildOf containment is checked for Component parents"
validator_function = "validate_component_reference"

[[rule]]
id = "sbol3-10902"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.2"
note = "nested ComponentReference inChildOf containment is checked locally"
validator_function = "validate_component_reference"

[[rule]]
id = "sbol3-10903"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.2"
note = "ComponentReference refersTo ComponentReference containment is checked locally"
validator_function = "validate_component_reference"

[[rule]]
id = "sbol3-10904"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.2"
note = "ComponentReference refersTo Feature containment is checked locally"
validator_function = "validate_component_reference"

[[rule]]
id = "sbol3-11001"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.3"
note = "LocalSubComponent type values from Table 2 are counted"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11002"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1.3"
note = "bundled ontology facts classify known Component type and type-modifier terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11003"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1.3"
note = "well-described-by ontology rule is not locally decidable"
blocker = "Ontology"

[[rule]]
id = "sbol3-11004"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "6.4.1.3"
note = "LocalSubComponent type IRIs that resolve to known SBO physical-entity terms outside SBOL Table 2 produce warnings; unknown IRIs remain undecided"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11005"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1.3"
note = "bundled ontology facts detect conflicts between known Component type families; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11006"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1.3"
note = "default validation remains undecided, but topology-complete validation rejects DNA/RNA objects without a known SO topology term"
blocker = "Policy"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11007"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4.1.3"
note = "bundled SO branch facts warn when explicit DNA/RNA type values include more than one known topology term"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11008"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4.1.3"
note = "bundled SO branch facts warn when known topology or strand terms appear without an explicit DNA/RNA type"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11009"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "bundled ontology branch facts reject known LocalSubComponent roles that are locally decidable as incompatible with known Table 2 types; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11010"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4"
note = "well-described-by role rule is not locally decidable"
blocker = "Ontology"

[[rule]]
id = "sbol3-11011"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4"
note = "bundled SO sequence-feature branch facts warn when known SO feature roles appear without an explicit DNA/RNA type"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11012"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4"
note = "bundled SO sequence-feature branch facts warn when explicit DNA/RNA types do not have exactly one known SO feature role; unknown/custom roles remain undecided"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11013"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.3"
note = "LocalSubComponent location overlap is checked for ranges"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11101"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.4"
note = "ExternallyDefined type values from Table 2 are counted"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11102"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1.4"
note = "bundled ontology facts classify known Component type and type-modifier terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11103"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1.4"
note = "well-described-by ontology rule is not locally decidable"
blocker = "Ontology"

[[rule]]
id = "sbol3-11104"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "6.4.1.4"
note = "ExternallyDefined type IRIs that resolve to known SBO physical-entity terms outside SBOL Table 2 produce warnings; unknown IRIs remain undecided"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11105"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1.4"
note = "bundled ontology facts detect conflicts between known Component type families; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11106"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.1.4"
note = "default validation remains undecided, but topology-complete validation rejects DNA/RNA objects without a known SO topology term"
blocker = "Policy"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11107"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4.1.4"
note = "bundled SO branch facts warn when explicit DNA/RNA type values include more than one known topology term"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11108"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4.1.4"
note = "bundled SO branch facts warn when known topology or strand terms appear without an explicit DNA/RNA type"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11109"
status = "MachineUncheckable"
normative_severity = "SHOULD"
spec_section = "6.4.1.4"
note = "known ExternallyDefined protein and simple-chemical definition resource prefixes are checked against Table 17 recommendations; unknown resources remain undecided"
blocker = "Ontology"
validator_function = "validate_external_definition_resource"

[[rule]]
id = "sbol3-11201"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.1.5"
note = "SequenceFeature location overlap is checked for ranges"
validator_function = "validate_class_specific_rules"

[[rule]]
id = "sbol3-11301"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.2"
note = "Location orientation vocabulary is checked"
validator_function = "validate_feature_vocabularies"

[[rule]]
id = "sbol3-11302"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.2"
note = "Feature Location sequence membership is checked locally"
validator_function = "validate_location_sequence_membership"

[[rule]]
id = "sbol3-11303"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.2"
note = "SubComponent sourceLocation sequence membership is checked locally"
validator_function = "validate_location_sequence_membership"

[[rule]]
id = "sbol3-11401"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.2.1"
note = "Range start bounds are checked when sequence elements are local"
validator_function = "validate_range"

[[rule]]
id = "sbol3-11402"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.2.1"
note = "Range end bounds are checked when sequence elements are local"
validator_function = "validate_range"

[[rule]]
id = "sbol3-11403"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.2.1"
note = "Range end must be greater than or equal to start"
validator_function = "validate_range"

[[rule]]
id = "sbol3-11501"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.2.2"
note = "Cut bounds are checked when sequence elements are local"
validator_function = "validate_cut"

[[rule]]
id = "sbol3-11701"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.3"
note = "Constraint subject containment is checked"
validator_function = "validate_constraint"

[[rule]]
id = "sbol3-11702"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.3"
note = "Constraint object containment is checked"
validator_function = "validate_constraint"

[[rule]]
id = "sbol3-11703"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.3"
note = "Constraint subject and object cannot be identical"
validator_function = "validate_constraint"

[[rule]]
id = "sbol3-11704"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "6.4.3"
note = "Constraint restriction is checked against Tables 8, 9, and 10"
validator_function = "validate_constraint"

[[rule]]
id = "sbol3-11705"
status = "Configurable"
blocker = "Policy"
normative_severity = "MUST"
spec_section = "6.4.3"
note = "direct sameOrientationAs and oppositeOrientationAs contradictions are checked for local Feature orientations"
validator_function = "validate_constraint"

[[rule]]
id = "sbol3-11706"
status = "Configurable"
blocker = "Policy"
normative_severity = "MUST"
spec_section = "6.4.3"
note = "Range and Cut locations on the same Sequence are checked for Table 10 relations"
validator_function = "validate_constraint"

[[rule]]
id = "sbol3-11801"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.4"
note = "bundled ontology facts classify known Interaction type terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_interaction_type_terms"

[[rule]]
id = "sbol3-11802"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.4"
note = "bundled ontology facts detect conflicts between known Interaction type terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_interaction_type_conflicts"

[[rule]]
id = "sbol3-11803"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4.4"
note = "bundled Table 11/SBO facts warn when the known local Interaction type count is not exactly one; unknown/custom terms remain undecided"
validator_function = "validate_interaction_type_branch_count"

[[rule]]
id = "sbol3-11804"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4.4"
note = "bundled Table 11/Table 12 cross-list facts warn when known local Participation roles do not match known local Interaction types"
validator_function = "validate_interaction_participation_roles"

[[rule]]
id = "sbol3-11901"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.4.1"
note = "Participation must contain exactly one participant kind"
validator_function = "validate_participation"

[[rule]]
id = "sbol3-11902"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.4.1"
note = "Participation participant containment is checked"
validator_function = "validate_participation"

[[rule]]
id = "sbol3-11903"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.4.1"
note = "higherOrderParticipant containment is checked"
validator_function = "validate_participation"

[[rule]]
id = "sbol3-11904"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.4.1"
note = "bundled ontology facts classify known Participation role terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_participation_roles"

[[rule]]
id = "sbol3-11905"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.4.4.1"
note = "bundled ontology facts detect conflicts between known Participation role terms; unknown/custom terms remain undecided"
blocker = "Ontology"
validator_function = "validate_participation_role_conflicts"

[[rule]]
id = "sbol3-11906"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.4.4.1"
note = "bundled Table 12/SBO facts warn when the known local Participation role count is not exactly one; unknown/custom terms remain undecided"
validator_function = "validate_participation_role_branch_count"

[[rule]]
id = "sbol3-12001"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.5"
note = "Interface input containment is checked"
validator_function = "validate_interface"

[[rule]]
id = "sbol3-12002"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.5"
note = "Interface output containment is checked"
validator_function = "validate_interface"

[[rule]]
id = "sbol3-12003"
status = "Error"
normative_severity = "MUST"
spec_section = "6.4.5"
note = "Interface nondirectional containment is checked"
validator_function = "validate_interface"

[[rule]]
id = "sbol3-12101"
status = "Error"
normative_severity = "MUST"
spec_section = "6.5"
note = "CombinatorialDerivation strategy vocabulary is checked"
validator_function = "validate_combinatorial_derivation"

[[rule]]
id = "sbol3-12102"
status = "Error"
normative_severity = "MUST"
spec_section = "6.5"
note = "enumerate strategy disallows unbounded cardinalities"
validator_function = "validate_combinatorial_derivation"

[[rule]]
id = "sbol3-12103"
status = "Error"
normative_severity = "MUST"
spec_section = "6.5"
note = "duplicate variable features by variable URI are rejected"
validator_function = "validate_combinatorial_derivation"

[[rule]]
id = "sbol3-12104"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local templates with no Features produce a warning"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12105"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local derived Component child Features are checked for template Feature provenance"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12106"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local derived Collection members are checked for derivation provenance"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12107"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local derived Component types are checked against template Component types"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12108"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local derived Component roles are checked against template Component roles"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12109"
status = "Configurable"
blocker = "Policy"
normative_severity = "MUST"
spec_section = "6.5"
note = "local static Feature derivations compare core Feature properties"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12110"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local static template Features are checked for exactly one derived Feature"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12111"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local variable Feature derivation counts are checked against cardinality"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12112"
status = "Configurable"
blocker = "Policy"
normative_severity = "MUST"
spec_section = "6.5"
note = "local derived SubComponent variants are resolved through variants, variantCollections, and variantDerivations"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12113"
status = "Configurable"
blocker = "Resolver"
normative_severity = "MUST"
spec_section = "6.5"
note = "local derived Features are checked against template Constraint relations when resolver facts are sufficient"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12114"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local derived variable Feature roles are checked against template Feature roles"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12115"
status = "Configurable"
blocker = "Policy"
normative_severity = "SHOULD"
spec_section = "6.5"
note = "local type-determining referent types are resolved for Feature derivation checks"
validator_function = "combinatorial_derivation_semantic_issues"

[[rule]]
id = "sbol3-12201"
status = "Error"
normative_severity = "MUST"
spec_section = "6.5.1"
note = "VariableFeature cardinality vocabulary is checked"
validator_function = "validate_variable_feature"

[[rule]]
id = "sbol3-12202"
status = "Error"
normative_severity = "MUST"
spec_section = "6.5.1"
note = "VariableFeature variable containment in template is checked"
validator_function = "validate_variable_feature"

[[rule]]
id = "sbol3-12203"
status = "Error"
normative_severity = "MUST"
spec_section = "6.5.1"
note = "variantCollection members are checked recursively when present locally"
validator_function = "validate_variant_collections"

[[rule]]
id = "sbol3-12204"
status = "Error"
normative_severity = "MUST"
spec_section = "6.5.1"
note = "variantDerivation cycles are checked locally"
validator_function = "validate_variant_derivation_cycles"

[[rule]]
id = "sbol3-12301"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.6"
note = "Implementation prov:wasDerivedFrom IRIs that resolve in-document must refer to a Component; external derivations remain unchecked"
blocker = "Resolver"
validator_function = "validate_implementation"

[[rule]]
id = "sbol3-12302"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.6"
note = "in-document Components referenced by Implementation prov:wasDerivedFrom are checked for type-term conflicts via the bundled ontology; external Components remain unchecked"
blocker = "Resolver"
validator_function = "validate_implementation"

[[rule]]
id = "sbol3-12303"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.6"
note = "faithful built Component check is not locally decidable"
blocker = "Policy"

[[rule]]
id = "sbol3-12501"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.8"
note = "resolver-aware validation can check Model source availability with caller-provided content providers; default validation remains offline"
blocker = "Resolver"
validator_function = "validate_model"

[[rule]]
id = "sbol3-12502"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.8"
note = "Model language IRI must specify a language; requires resolving the IRI"
blocker = "Resolver"

[[rule]]
id = "sbol3-12503"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.8"
note = "known aliases of Table 15 Model language URIs require the preferred Table 15 URI; broader well-described-by reasoning is deferred"
blocker = "Ontology"
validator_function = "validate_model"

[[rule]]
id = "sbol3-12504"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.8"
note = "Model language values from known non-EDAM bundled ontologies warn; unknown/custom IRIs remain undecided"
validator_function = "validate_model"

[[rule]]
id = "sbol3-12505"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.8"
note = "Model framework IRI must specify a framework; requires resolving the IRI"
blocker = "Resolver"

[[rule]]
id = "sbol3-12506"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.8"
note = "known aliases of Table 16 Model framework URIs require the preferred Table 16 URI; broader well-described-by reasoning is deferred"
blocker = "Ontology"
validator_function = "validate_model"

[[rule]]
id = "sbol3-12507"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "6.8"
note = "Model framework IRIs that resolve to known SBO terms outside the SBO:0000004 modelling-framework branch produce warnings; unknown IRIs remain undecided"
validator_function = "validate_model"

[[rule]]
id = "sbol3-12801"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.10"
note = "resolver-aware validation can check Attachment source availability with caller-provided content providers; default validation remains offline"
blocker = "Resolver"
validator_function = "validate_attachment"

[[rule]]
id = "sbol3-12802"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.10"
note = "Attachment format semantic check is deferred"
blocker = "Ontology"

[[rule]]
id = "sbol3-12803"
status = "Configurable"
blocker = "Ontology"
normative_severity = "SHOULD"
spec_section = "6.10"
note = "known non-EDAM format terms warn; unknown/custom terms remain undecided"
validator_function = "validate_attachment"

[[rule]]
id = "sbol3-12804"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.10"
note = "local size literals are checked for nonnegative byte counts; resolver-aware validation compares size against resolved content bytes"
blocker = "Resolver"
validator_function = "validate_attachment"

[[rule]]
id = "sbol3-12805"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.10"
note = "local hash literals are checked for hexadecimal digest shape; resolver-aware validation verifies sha3-256 against resolved content bytes"
blocker = "Resolver"
validator_function = "validate_attachment"

[[rule]]
id = "sbol3-12806"
status = "MachineUncheckable"
normative_severity = "MUST"
spec_section = "6.10"
note = "Appendix B ▲: spec asks tools not to report. Local subset emits a warning when the hashAlgorithm literal is not a registry-style token; PolicyOptions::hash_algorithm_registry can opt into Strict (error on unknown algorithm) or Lenient (skip)."
blocker = "Policy"
validator_function = "validate_attachment"

[[rule]]
id = "sbol3-12807"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "6.10"
note = "local hashAlgorithm literals warn unless they use the recommended sha3-256 value"
validator_function = "validate_attachment"

[[rule]]
id = "sbol3-12808"
status = "Error"
normative_severity = "MUST"
spec_section = "6.10"
note = "Attachment hash requires hashAlgorithm"
validator_function = "validate_attachment"

[[rule]]
id = "sbol3-12901"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.1.1"
note = "workflow stage recommendation policy is deferred"
validator_function = "validate_workflow_rules"

[[rule]]
id = "sbol3-12902"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.1.1"
note = "workflow association recommendation policy is deferred"
validator_function = "validate_workflow_rules"

[[rule]]
id = "sbol3-13001"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.1.2"
note = "workflow usage recommendation policy is deferred"
validator_function = "validate_workflow_rules"

[[rule]]
id = "sbol3-13401"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.2.1"
note = "om:Measure type IRIs that resolve to known SBO terms outside the SBO:0000545 Systems Description Parameter branch produce warnings; unknown IRIs remain undecided"
validator_function = "validate_om_measure"

[[rule]]
id = "sbol3-13501"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.2.2"
note = "local om:Unit sbol:name and om:label literal values are compared"
validator_function = "validate_om_unit_strings"

[[rule]]
id = "sbol3-13502"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.2.2"
note = "local om:Unit sbol:description and om:comment literal values are compared"
validator_function = "validate_om_unit_strings"

[[rule]]
id = "sbol3-14201"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.2.9"
note = "local om:Prefix sbol:name and om:label literal values are compared"
validator_function = "validate_om_prefix_strings"

[[rule]]
id = "sbol3-14202"
status = "Warning"
normative_severity = "SHOULD"
spec_section = "A.2.9"
note = "local om:Prefix sbol:description and om:comment literal values are compared"
validator_function = "validate_om_prefix_strings"