This file is indexed.

/usr/include/sbml/packages/comp/validator/CompSBMLErrorTable.h is in libsbml5-dev 5.10.0+dfsg-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
/**
 * @file    CompSBMLErrorTable.h
 * @brief   Represents SBML errors and other diagnostics
 * @author  Sarah Keating
 * 
 * <!--------------------------------------------------------------------------
 * This file is part of libSBML.  Please visit http://sbml.org for more
 * information about SBML, and the latest version of libSBML.
 *
 * Copyright (C) 2013-2014 jointly by the following organizations:
 *     1. California Institute of Technology, Pasadena, CA, USA
 *     2. EMBL European Bioinformatics Institute (EMBL-EBI), Hinxton, UK
 *     3. University of Heidelberg, Heidelberg, Germany
 * 
 * Copyright 2011-2012 jointly by the following organizations:
 *     1. California Institute of Technology, Pasadena, CA, USA
 *     2. EMBL European Bioinformatics Institute (EMBL-EBI), Hinxton, UK
 *
 * This library is free software; you can redistribute it and/or modify it
 * under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation.  A copy of the license agreement is provided
 * in the file named "LICENSE.txt" included with this software distribution
 * and also available online as http://sbml.org/software/libsbml/license.html
 * ---------------------------------------------------------------------- -->*/
#ifndef CompSBMLErrorTable_h
#define CompSBMLErrorTable_h


#include <sbml/packages/comp/validator/CompSBMLError.h>


LIBSBML_CPP_NAMESPACE_BEGIN

/** @cond doxygenLibsbmlInternal */



static const packageErrorTableEntry compErrorTable[] =
{
  // 1010100
  { CompUnknown, 
    "Unknown error from comp",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Unknown error from comp",
    { ""
    }
  },

  // 1010101
  { CompNSUndeclared, 
    "The comp ns is not correctly declared",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "To conform to Version 1 of the Hierarchical Model "
    "Composition package specification for SBML Level 3, an "
    "SBML document must declare the use of the following XML Namespace: "
    "'http://www.sbml.org/sbml/level3/version1/comp/version1'",
    { "L3V1 Comp V1 Section 3.1"
    }
  },

  // 1010102
  { CompElementNotInNs, 
    "Element not in comp namespace",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Wherever they appear in an SBML document, "
    "elements and attributes from the Hierarchical Model Composition "
    "package must be declared either implicitly or explicitly to be in the "
    "XML namespace 'http://www.sbml.org/sbml/level3/version1/comp/version1'",
    { "L3V1 Comp V1 Section 3.1"
    }
  },

    // 1010301
  { CompDuplicateComponentId, 
    "Duplicate 'id' attribute value",
    LIBSBML_CAT_IDENTIFIER_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "(Extends validation rule #10301 in the SBML Level 3 Version 1 Core "
    "specification.) Within a <model> or <modelDefinition> object, "
    "the values of the attributes id and comp:id on every instance of the "
    "following classes of objects must be unique across the set of all id "
    "and comp:id attribute values of all such objects in a model: the "
    "model itself, plus all contained <functionDefinition>, <compartment>,"
    "<species>, <reaction>, <speciesReference>, <modifierSpeciesReference>, "
    "<event>, and <parameter> objects, plus the <submodel> and <deletion> "
    "objects defined by the Hierarchical Model Composition package, plus "
    "any objects defined by any other package with 'package:id' "
    "attributes defined as falling in the 'SId' namespace.", 
    { "L3V1 Comp V1 Section 3.9"
    }
  },

    // 1010302
  { CompUniqueModelIds, 
    "Model and ExternalModelDefinitions must have unique ids",
    LIBSBML_CAT_IDENTIFIER_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The values of the attributes 'id' and "
    "'comp:id' on every instance of all <model>, <modelDefinition>, and "
    "<externalModelDefinition> objects must be unique across the set of all "
    "'id' and 'comp:id' attribute values of such objects "
    "in the SBML document to which they belong.",
    { "L3V1 Comp V1 Section 3.9"
    }
  },

    // 1010303
  { CompUniquePortIds, 
    "Ports must have unique ids",
    LIBSBML_CAT_IDENTIFIER_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Within <model> and <modelDefinition> objects inside an SBML document, "
    "the value of the attribute 'comp:id' on every instance of a "
    "<port> object must be unique across the set of all 'comp:id' "
    "attribute values of all such objects in the model.",
    { "L3V1 Comp V1 Section 3.9"
    }
  },

    // 1010304
  { CompInvalidSIdSyntax, 
    "Invalid SId syntax",
    LIBSBML_CAT_IDENTIFIER_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a comp:id attribute must always conform to the "
    "syntax of the SBML data type SId.",
    { "L3V1 Core Section 3.1.7"
    }
  },


  // 1010308
  { CompInvalidSubmodelRefSyntax, 
    "Invalid submodelRef syntax",
    LIBSBML_CAT_IDENTIFIER_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:submodelRef' attribute "
    "on <replacedElement> and <replacedBy> objects must always conform to the "
    "syntax of the SBML data type SId.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1010309
  { CompInvalidDeletionSyntax, 
    "Invalid deletion syntax",
    LIBSBML_CAT_IDENTIFIER_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:deletion' attribute "
    "on <replacedElement> objects must always conform to the "
    "syntax of the SBML data type SId.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1010310
  { CompInvalidConversionFactorSyntax, 
    "Invalid conversionFactor syntax",
    LIBSBML_CAT_IDENTIFIER_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:conversionFactor' attribute "
    "on <replacedElement> objects must always conform to the "
    "syntax of the SBML data type SId.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1010311
  { CompInvalidNameSyntax, 
    "Invalid name syntax",
    LIBSBML_CAT_IDENTIFIER_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:name' attribute "
    "must always conform to the "
    "syntax of type string.",
    { "L3V1 Core Section 3.1.1"
    }
  },

  // 1010501
  { CompReplacedUnitsShouldMatch, 
    "Units of replaced elements should match replacement units.",
    LIBSBML_CAT_UNITS_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "If one element replaces another, whether it is the target of "
    "a <replacedBy> element, or whether it has a child <replacedElement>, "
    "the units of the replaced element, multiplied by the units of any "
    "applicable conversion factor, should equal the units of the "
    "replacement element.",
    { "L3V1 Comp V1 Section 3.6.5"
    }
  },


  // 1020101
  { CompOneListOfReplacedElements, 
    "Only one <listOfReplacedElements> allowed.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Any object derived from the extended SBase class "
    "(defined in the Hierarchical Model Composition package) may contain "
    "at most one instance of a <listOfReplacedElements> subobject.",
    { "L3V1 Comp V1 Section 3.6"
    }
  },

  // 1020102
  { CompLOReplaceElementsAllowedElements, 
    "Allowed children of <listOfReplacedElements>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotation subobjects permitted on "
    "all SBML objects, a <listOfReplacedElements> container object may "
    "only contain <replacedElement> objects.",
    { "L3V1 Comp V1 Section 3.6"
    }
  },

  // 1020103
  { CompLOReplacedElementsAllowedAttribs, 
    "Allowed <listOfReplacedElements> attributes",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <listOfReplacedElements> object may have the optional attributes "
    "'metaid' and 'sboTerm' defined by SBML Level 3 Core. No other "
    "attributes from the SBML Level 3 Core namespace or the "
    "HierarchicalModel Composition namespace are permitted on a "
    "<listOfReplacedElements> object.",
    { "L3V1 Comp V1 Section 3.6"
    }
  },

  // 1020104
  { CompEmptyLOReplacedElements, 
    "<listOfReplacedElements> must not be empty",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The <listOfReplacedElements> in an SBase object is optional, but "
    "if present, must not be empty.",
    { "L3V1 Comp V1 Section 3.6"
    }
  },

  // 1020105
  { CompOneReplacedByElement, 
    "Only one <replacedBy> object allowed.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Any object derived from the extended SBase class "
    "(defined in the Hierarchical Model Composition package) may contain "
    "at most one instance of a <replacedBy> subobject.",
    { "L3V1 Comp V1 Section 3.6"
    }
  },

  // 1020201
  { CompAttributeRequiredMissing, 
    "Required comp:required attribute on <sbml>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "In all SBML documents using the HierarchicalModel Composition "
    "package, the SBML object must include a value for the attribute "
    "'comp:required' attribute.",
    { "L3V1 Core Section 4.1.2"
    }
  },

  // 1020202
  { CompAttributeRequiredMustBeBoolean, 
    "The comp:required attribute must be Boolean",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of attribute 'comp:required' on the SBML object must "
    "be of the data type Boolean.",
    { "L3V1 Core Section 4.1.2"
    }
  },

  // 1020203
  { CompRequiredTrueIfElementsRemain, 
    "The comp:required attribute must be 'true' if math changes",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_NOT_APPLICABLE,
    "The value of attribute 'comp:required' on the SBML object must "
    "be set to 'true' if the Model object within the SBML object "
    "contains any Submodel with Species, Parameter, Compartment, "
    "Reaction, or Event objects that have not been either directly or "
    "indirectly replaced.",
    { "L3V1 Comp V1 Section 3.1"
    }
  },

  // 1020204
  { CompRequiredFalseIfAllElementsReplaced, 
    "The comp:required attribute must be 'false' if math does not change",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_NOT_APPLICABLE,
    "The value of attribute 'comp:required' on the SBML object must be "
    "set to 'false' if the Model object within the SBML object contains "
    "no Submodel objects, or if all Submodel objects that are present "
    "contain no Species, Parameter, Compartment, Reaction, or Event "
    "objects that have not been either directly or indirectly replaced.",
    { "L3V1 Comp V1 Section 3.1"
    }
  },

  // 1020205
  { CompOneListOfModelDefinitions, 
    "Only one <listOfModelDefinitions> allowed.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "There may be at most one instance of the <listOfModelDefinitions> "
    "within an SBML object that uses the SBML Level 3 Hierarchical "
    "Model Composition package.",
    { "L3V1 Comp V1 Section 3.3"
    }
  },

  // 1020206
  { CompEmptyLOModelDefs, 
    "<listOfModelDefinitions> and <listOfExternalModelDefinitions> must not be empty",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The various 'ListOf' subobjects within an SBML object are optional, "
    "but if present, these container objects must not be empty. "
    "Specifically, if any of the following classes of objects is present "
    "within the SBML object, it must not be empty: "
    "<listOfModelDefinitions> and <listOfExternalModelDefinitions>.",
    { "L3V1 Comp V1 Section 3.3"
    }
  },

  // 1020207
  { CompLOModelDefsAllowedElements, 
    "Only <modelDefinitions> in <listOfModelDefinitions>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotation subobjects permitted on "
    "all SBML objects, a <listOfModelDefinitions> container may only "
    "contain <modelDefinition> objects.",
    { "L3V1 Comp V1 Section 3.3"
    }
  },

  // 1020208
  { CompLOExtModelDefsAllowedElements, 
    "Only <externalModelDefinitions> in <listOfExternalModelDefinitions>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotation subobjects permitted on "
    "all SBML objects, a <listOfExternalModelDefinitions> container may "
    "only contain <externalModelDefinition> objects.",
    { "L3V1 Comp V1 Section 3.3"
    }
  },

  // 1020209
  { CompLOModelDefsAllowedAttributes, 
    "Allowed <listOfModelDefinitions> attributes",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <listOfModelDefinitions> object may have the optional attributes "
    "'metaid' and 'sboTerm'. No other attributes from the SBML Level 3 "
    "Core namespace or the HierarchicalModel Composition namespace are "
    "permitted on a <listOfModelDefinitions> object.",
    { "L3V1 Comp V1 Section 3.3"
    }
  },

  // 1020210
  { CompLOExtModDefsAllowedAttributes, 
    "Allowed <listOfExternalModelDefinitions> attributes",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <listOfExternalModelDefinitions> object may have the optional "
    "attributes 'metaid' and 'sboTerm'. No other attributes from the "
    "SBML Level 3 Core namespace or the HierarchicalModel Composition "
    "namespace are permitted on a <listOfExternalModelDefinitions> object.",
    { "L3V1 Comp V1 Section 3.3"
    }
  },

  // 1020211
  { CompOneListOfExtModelDefinitions, 
    "Only one <listOfExternalModelDefinitions> allowed.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "There may be at most one instance of the "
    "<listOfExternalModelDefinitions> within an SBML object that uses the "
    "SBML Level 3 Hierarchical Model Composition package.",
    { "L3V1 Comp V1 Section 3.3"
    }
  },

  // 1020212
  { CompAttributeRequiredMustBeTrue, 
    "The comp:required attribute must be 'true'",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of attribute 'comp:required' on the SBML object must "
    "be set to 'true'.",
    { "L3V1 Comp V1 Section 3.1"
    }
  },

  // 1020301
  { CompExtModDefAllowedCoreAttributes, 
    "Allowed <externalModelDefinitions> core attributes",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "An <externalModelDefinition> object may have the optional "
    "SBML Level 3 Core attributes 'metaid' and 'sboTerm'.  No "
    "other attributes from the SBML Level 3 Core namespace are permitted on "
    "an <externalModelDefinition> object.",
    { "L3V1 Comp V1 Section 3.2"
    }
  },

  // 1020302
  { CompExtModDefAllowedElements, 
    "Allowed <externalModelDefinitions> elements",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "An <externalModelDefinition> object may have the optional "
    "SBML Level 3 Core subobjects for notes and annotation.  No "
    "other subobjects from the SBML Level 3 Core namespace or the "
    "Hierarchical Model Composition namespace are permitted on "
    "an <externalModelDefinition> object.",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020303
  { CompExtModDefAllowedAttributes, 
    "Allowed <externalModelDefinitions> attributes",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "An <externalModelDefinition> object must have the attributes "
    "'comp:id' and 'comp:source', and may have the optional attributes "
    "'comp:name', 'comp:modelRef', and 'comp:md5'. No other attributes "
    "from the Hierarchical Model Composition namespace are permitted on "
    "an <externalModelDefinition> object.",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020304
  { CompReferenceMustBeL3, 
    "External models must be L3",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of the 'comp:source' attribute on an <externalModelDefinition> "
    "object must reference an SBML Level 3 Version 1 document.",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020305
  { CompModReferenceMustIdOfModel, 
    "'modelRef' must be the 'id' of a model in the 'source' document",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of the 'comp:modelRef' attribute on an <externalModelDefinit"
    "ion> object must be the value of an id attribute on a <model>, "
    "<modelDefinition>, or <externalModelDefinition> object in the SBML "
    "document referenced by the 'comp:source' attribute.",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020306
  { CompExtModMd5DoesNotMatch, 
    "MD5 checksum does not match the 'source' document",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The value of the 'comp:md5' attribute, if present on an "
    "<externalModelDefinition> object, should match the calculated MD5 "
    "checksum of the SBML document referenced by the 'comp:source' "
    "attribute. ",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020307
  { CompInvalidSourceSyntax, 
    "The 'comp:source' attribute must be of type 'anyURI'",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:source' attribute on an <externalModelDefinition> "
    "object must always conform to the syntax of the XML Schema 1.0 data "
    "type 'anyURI'.",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020308
  { CompInvalidModelRefSyntax, 
    "The 'comp:modelRef' attribute must have the syntax of 'SId'",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a comp:modelRef attribute on an <externalModelDefinition> "
    "object must always conform to the syntax of the SBML data type SId.",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020308
  { CompInvalidMD5Syntax, 
    "The 'comp:md5' attribute must have the syntax of 'string'",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a comp:md5 attribute on an <externalModelDefinition> "
    "object must always conform to the syntax of type string.",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020310
  { CompCircularExternalModelReference, 
    "Circular reference in <externalModelDefinition>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "An <externalModelDefinition> object must not reference an "
    "<externalModelDefinition> in a different SBML document that, in turn, "
    "refers back to the original <externalModelDefinition object, "
    "whether directly or indirectly through a chain of "
    "<externalModelDefinition> objects. ",
    { "L3V1 Comp V1 Section 3.3.2"
    }
  },

  // 1020501
  { CompOneListOfOnModel, 
    "Only one <listOfSubmodels> and one <listOfPorts> allowed",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "There may be at most one instance of each of the following kinds of "
    "objects within a <model> or <modelDefinition> object using "
    "Hierarchical Model Composition: <listOfSubmodels> and <listOfPorts>.",
    { "L3V1 Comp V1 Section 3.4"
    }
  },

  // 1020502
  { CompNoEmptyListOfOnModel, 
    "No empty listOf elements allowed",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The various ListOf subobjects with a <model> object are optional, "
    "but if present, these container object must not be empty.  "
    "Specifically, if any of the following classes of objects "
    "are present on the <model>, it must not be empty: <listOfSubmodels> "
    "and <listOfPorts>.",
    { "L3V1 Comp V1 Section 3.4"
    }
  },

  // 1020503
  { CompLOSubmodelsAllowedElements, 
    "Allowed elements on <listOfSubmodels>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotation subobjects "
    "permitted on all SBML objects, a <listOfSubmodels> container "
    "object may only contain <submodel> objects.",
    { "L3V1 Comp V1 Section 3.4"
    }
  },

  // 1020504
  { CompLOPortsAllowedElements, 
    "Allowed elements on <listOfPorts>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotation subobjects "
    "permitted on all SBML objects, a <listOfPorts> container "
    "object may only contain <port> objects.",
    { "L3V1 Comp V1 Section 3.4"
    }
  },

  // 1020505
  { CompLOSubmodelsAllowedAttributes, 
    "Allowed attributes on <listOfSubmodels>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <listOfSubmodels> object may have the optional "
    "attributes 'metaid' and 'sboTerm'. No other attributes from the "
    "SBML Level 3 Core namespace or the HierarchicalModel Composition "
    "namespace are permitted on a <listOfSubmodels> object.",
    { "L3V1 Comp V1 Section 3.4"
    }
  },

  // 1020506
  { CompLOPortsAllowedAttributes, 
    "Allowed attributes on <listOfPorts>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <listOfPorts> object may have the optional "
    "attributes 'metaid' and 'sboTerm'. No other attributes from the "
    "SBML Level 3 Core namespace or the HierarchicalModel Composition "
    "namespace are permitted on a <listOfPorts> object.",
    { "L3V1 Comp V1 Section 3.4"
    }
  },

    // 1010601
  { CompSubmodelAllowedCoreAttributes, 
    "Allowed core attributes on <submodel>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <submodel> object may have the optional SBML Level 3 Core "
    "attributes 'metaid' and 'sboTerm'.  No other attributes from "
    "the SBML Level 3 Core namespace are permitted on a <submodel> object.",
    { "L3V1 Core Section 3.2"
    }
  },

    // 1010602
  { CompSubmodelAllowedElements, 
    "Allowed elements on <submodel>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <submodel> object may have the optional SBML Level 3 Core "
    "subobjects for notes and annotations.  No other elements from "
    "the SBML Level 3 Core namespace are permitted on a <submodel> object.",
    { "L3V1 Core Section 3.2"
    }
  },

  // 1020603
  { CompOneListOfDeletionOnSubmodel, 
    "Only one <listOfDeletions> on a <submodel> allowed",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "There may be at most one <listOfDeletions> container object within a "
    "<submodel> object.",
    { "L3V1 Comp V1 Section 3.5"
    }
  },

  // 1020604
  { CompSubmodelNoEmptyLODeletions, 
    "No empty listOfDeletions elements allowed",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <listOfDeletions> container object within a <submodel> object "
    "is optional, but if present, must not be empty.",
    { "L3V1 Comp V1 Section 3.5"
    }
  },

  // 1020605
  { CompLODeletionsAllowedElements, 
    "Allowed elements on <listOfDeletions>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotation subobjects permitted on "
    "all SBML objects, a <listOfDeletions> container object may only contain "
    "<deletion> objects.",
    { "L3V1 Comp V1 Section 3.5"
    }
  },

  // 1020606
  { CompLODeletionAllowedAttributes, 
    "Allowed <listOfDeletions> attributes",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <listOfDeletions> object may have the optional attributes "
    "'metaid' and 'sboTerm' defined by SBML Level 3 Core. No other "
    "attributes from the SBML Level 3 Core namespace or the "
    "HierarchicalModel Composition namespace are permitted on a "
    "<listOfReplacedElements> object.",
    { "L3V1 Comp V1 Section 3.5"
    }
  },

  // 1020607
  { CompSubmodelAllowedAttributes, 
    "Allowed <submodel> attributes",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <submodel> object must have the attributes 'comp:id' and "
    "'comp:modelRef' because they are required, and may also have the "
    "optional attributes 'comp:name', 'comp:timeConversionFactor, and/or "
    "'comp:extentConversionFactor'.  No other attributes from the "
    "Hierarchical Model Composition namespace are permitted on a "
    "<submodel> object.",
    { "L3V1 Comp V1 Section 3.5"
    }
  },

  // 1020608
  { CompModReferenceSyntax, 
    "'comp:modelRef' must conform to SId syntax",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:modelRef' attribute on a <submodel> object must "
    "always conform to the syntax of the SBML data type SId. ",
    { "L3V1 Comp V1 Section 3.5.1"
    }
  },

  // 1020613
  { CompInvalidTimeConvFactorSyntax, 
    "'comp:timeConversionFactor' must conform to SId syntax",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:timeConversionFactor' attribute on a <submodel> object must "
    "always conform to the syntax of the SBML data type SId. ",
    { "L3V1 Comp V1 Section 3.5.1"
    }
  },

  // 1020614
  { CompInvalidExtentConvFactorSyntax, 
    "'comp:extentConversionFactor' must conform to SId syntax",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:extentConversionFactor' attribute on a <submodel> object must "
    "always conform to the syntax of the SBML data type SId. ",
    { "L3V1 Comp V1 Section 3.5.1"
    }
  },

  // 1020615
  { CompSubmodelMustReferenceModel, 
    "The 'comp:modelRef' attribute must reference a model",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:modelRef' attribute on a <submodel> must be the "
    "identifier of a <model>, <modelDefinition>, or "
    "<externalModelDefinition> object in the same SBML object as the "
    "<submodel>.",
    { "L3V1 Comp V1 Section 3.5.1"
    }
  },

  // 1020616
  { CompSubmodelCannotReferenceSelf, 
    "The 'comp:modelRef' attribute cannot reference own model",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <model> or <modelDefinition> object must not contain a <submodel> "
    "which references that model object itself. That is, the value of a "
    "'comp:modelRef' attribute on a <submodel> must not be the value of "
    "the parent <model> or <modelDefinition>'s 'id' attribute.",
    { "L3V1 Comp V1 Section 3.5.1"
    }
  },

  // 1020617
  { CompModCannotCircularlyReferenceSelf, 
    "<model> may not reference <submodel> that references itself.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <model> object must not contain a <submodel> which references that "
    "<model> indirectly. That is, the 'comp:modelRef' attribute of a "
    "<submodel> may not point to the 'id' of a <model> containing a "
    "<submodel> object that references the original <model> directly or "
    "indirectly through a chain of <model>/<submodel> pairs.",
    { "L3V1 Comp V1 Section 3.5.1"
    }
  },

  // 1020622
  { CompTimeConversionMustBeParameter, 
    "The 'comp:timeConversionFactor' must reference a parameter",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:timeConversionFactor' attribute on a given "
    "<submodel> object must be the identifier of a <parameter> object "
    "defined in the same Model containing the <submodel>.",
    { "L3V1 Comp V1 Section 3.5.1"
    }
  },

  // 1020623
  { CompExtentConversionMustBeParameter, 
    "The 'comp:extentConversionFactor' must reference a parameter",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:extentConversionFactor' attribute on a given "
    "<submodel> object must be the identifier of a <parameter> object "
    "defined in the same Model containing the <submodel>.",
    { "L3V1 Comp V1 Section 3.5.1"
    }
  },
  
  // 1020701
  { CompPortRefMustReferencePort, 
    "The 'comp:portRef' attribute must be the 'id' of a <port>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:portRef' attribute on an <sBaseRef> object "
    "must be the identifier of a <port> object in the <model> referenced "
    "by that <sBaseRef>.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020702
  { CompIdRefMustReferenceObject, 
    "The 'comp:idRef' attribute must be the 'id' of a model element",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:idRef' attribute on an <sBaseRef> object must "
    "be the identifier of an object contained in (that is, within the "
    "SId namespace of) the <model> referenced by that <sBaseRef>. This "
    "includes objects with 'id' attributes defined in packages other "
    "than SBML Level 3 Core or the Hierarchical Model Composition "
    "package.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020703
  { CompUnitRefMustReferenceUnitDef, 
    "The 'comp:unitRef' attribute must be the 'id' of a UnitDefinition",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:unitRef' attribute on an <sBaseRef> object must "
    "be the identifier of a <unitDefinition< object contained in the "
    "<model> referenced by that <sBaseRef>.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020704
  { CompMetaIdRefMustReferenceObject, 
    "The 'comp:metaIdRef' attribute must be the 'metaid' of an object",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:metaIdRef' attribute on an <sBaseRef> object "
    "must be the value of a 'comp:metaid' attribute on an element contained "
    "in the <model> referenced by that <sBaseRef>.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020705
  { CompParentOfSBRefChildMustBeSubmodel, 
    "If <sBaseRef> has a child <sBaseRef> its parent must be a <submodel>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "If an <sBaseRef> object contains an <sBaseRef> child, the parent "
    "<sBaseRef> must point to a <submodel> object, or a "
    "<port> that itself points to a <submodel> object. ",
    { "L3V1 Comp V1 Section 3.7.2"
    }
  },

  // 1020706
  { CompInvalidPortRefSyntax, 
    "The 'comp:portRef' attribute must have the syntax of an SBML SId",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:portRef' attribute on an SBaseRef object must "
    "always conform to the syntax of the SBML data type SId.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020707
  { CompInvalidIdRefSyntax, 
    "The 'comp:idRef' attribute must have the syntax of an SBML SId",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:idRef' attribute on an SBaseRef object must "
    "always conform to the syntax of the SBML data type SId.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020708
  { CompInvalidUnitRefSyntax, 
    "The 'comp:unitRef' attribute must have the syntax of an SBML SId",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:unitRef' attribute on an SBaseRef object must "
    "always conform to the syntax of the SBML data type SId.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020709
  { CompInvalidMetaIdRefSyntax, 
    "The 'comp:metaIdRef' attribute must have the syntax of an XML ID",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:metaIdRef' attribute on an SBaseRef object must "
    "always conform to the syntax of the XML data type ID.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020710
  { CompOneSBaseRefOnly, 
    "Only one <sbaseRef>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Apart from the general notes and annotation subobjects permitted on "
    "all SBML objects, an SBaseRef object may only contain a single "
    "<sBaseRef> child.",
    { "L3V1 Comp V1 Section 3.7.2"
    }
  },

  // 1020711
  { CompDeprecatedSBaseRefSpelling, 
    "The spelling 'sbaseRef' is deprecated",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The 'sbaseRef' spelling of an SBaseRef child of an SBaseRef object "
    "is considered deprecated, and 'sBaseRef' should be used instead.",
    { "L3V1 Comp V1 Section 3.7.2"
    }
  },

  // 1020712
  { CompSBaseRefMustReferenceObject, 
    "An SBaseRef must reference an object.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "An <sBaseRef> object must point to another object; that is, a "
    "<sBaseRef> object must always have a value for one of the attributes "
    "'comp:portRef', 'comp:idRef', 'comp:unitRef', or 'comp:metaIdRef'.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020713
  { CompSBaseRefMustReferenceOnlyOneObject, 
    "An SBaseRef must reference only one other object.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "An <sBaseRef> object can only point to one other object; that is, "
    "a given <sBaseRef> object can only have a value for one of the "
    "attributes 'comp:portRef', 'comp:idRef', 'comp:unitRef', or "
    "'comp:metaIdRef'.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020714
  { CompNoMultipleReferences, 
    "Objects may not be referenced by multiple SBaseRef constructs.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Any one SBML object may only be referenced in one of the following ways:  "
    "referenced by a single <port> object; referenced by a single <deletion> "
    "object; referenced by a single <replacedElement>; be the parent of a "
    "single <replacedBy> child; be referenced by one or more <replacedBy> "
    "objects; or be referenced by one or more <replacedElement> objects all "
    "using the 'deletion' attribute.  Essentially, once an object has been "
    "referenced in one of these ways it cannot be referenced again.",
    { "L3V1 Comp V1 Section 3.7.1"
    }
  },

  // 1020801
  { CompPortMustReferenceObject, 
    "Port must reference an object",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <port> object must point to another object; that "
    "is, a <port> object must always have a value for one of the attributes "
    "'comp:idRef', 'comp:unitRef', or 'comp:metaIdRef'.",
    { "L3V1 Comp V1 Section 3.4.3"
    }
  },

  // 1020802
  { CompPortMustReferenceOnlyOneObject, 
    "Port must reference only one other object.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <port> object can only point to one other "
    "object; that is, a given <port> object can only have a value for one of "
    "the attributes 'comp:idRef', 'comp:unitRef', or 'comp:metaIdRef'.",
    { "L3V1 Comp V1 Section 3.4.3"
    }
  },

  // 1020803
  { CompPortAllowedAttributes, 
    "Allowed attributes on a Port",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <port> object must have a value for the required "
    "attribute 'comp:id', and one, and only one, of the "
    "attributes 'comp:idRef', 'comp:unitRef', or "
    "'comp:metaIdRef'.  No other attributes from the Hierarchical "
    "Model Composition namespace are permitted on a <port> object.",
    { "L3V1 Comp V1 Section 3.4.3"
    }
  },

  // 1020804
  { CompPortReferencesUnique, 
    "Port definitions must be unique.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Port definitions must be unique; that is, no two "
    "<port> objects in a given Model may reference the same object in that "
    "Model.",
    { "L3V1 Comp V1 Section 3.4.3"
    }
  },

  // 1020901
  { CompDeletionMustReferenceObject, 
    "Deletion must reference an object",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <deletion> object must point to another object; that "
    "is, a <deletion> object must always have a value for one of the attributes "
    "'comp:portRef', 'comp:idRef', 'comp:unitRef', or 'comp:metaIdRef'",
    { "L3V1 Comp V1 Section 3.5.3"
    }
  },

  // 1020902
  { CompDeletionMustReferOnlyOneObject, 
    "Deletion must reference only one other object.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <deletion> object can only point to one other "
    "object; that is, a given <deletion> object can only have a value for one of "
    "the attributes 'comp:portRef', 'comp:idRef', 'comp:unitRef', or "
    "'comp:metaIdRef'",
    { "L3V1 Comp V1 Section 3.5.3"
    }
  },

  // 1020903
  { CompDeletionAllowedAttributes, 
    "Allowed attributes on a Deletion",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <deletion> object must have a value for one, and only one, of the "
    "attributes 'comp:portRef', 'comp:idRef', 'comp:unitRef', and "
    "'comp:metaIdRef'.  It may also have the optional attributes 'comp:id' "
    "and 'comp:name'.  No other attributes from the Hierarchical "
    "Model Composition namespace are permitted on a <deletion> object.",
    { "L3V1 Comp V1 Section 3.5.3"
    }
  },

  // 1021001
  { CompReplacedElementMustRefObject, 
    "ReplacedElement must reference an object",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <replacedElement> object must point to another object; that "
    "is, a <replacedElement> object must always have a value for one of the "
    "attributes 'comp:portRef', 'comp:idRef', 'comp:unitRef', "
    "'comp:metaIdRef' or 'comp:deletion'.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1021002
  { CompReplacedElementMustRefOnlyOne, 
    "ReplacedElement must reference only one other object.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <replacedElement> object can only point to one other "
    "object; that is, a given <replacedElement> object can only have a value "
    "for one of the attributes 'comp:portRef', 'comp:idRef', 'comp:unitRef', "
    "'comp:metaIdRef' or 'comp:deletion'.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1021003
  { CompReplacedElementAllowedAttributes, 
    "Allowed attributes on <replacedElement>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <replacedElement> object must have a value for the required attribute "
    "'comp:submodelRef', and a value for one, and only one, of the following "
    "attributes: 'comp:portRef', 'comp:idRef', 'comp:unitRef', "
    "'comp:metaIdRef', or 'comp:deletion'. It may also have a value for the "
    "optional attribute 'comp:conversionFactor'. No other attributes from "
    "the HierarchicalModel Composition namespace are permitted on a "
    "<replacedElement> object.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1021004
  { CompReplacedElementSubModelRef, 
    "The 'comp:submodelRef' attribute must point to a <submodel>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:submodelRef' attribute on a <replacedElement> "
    "object must be the identifier of a <submodel> present in the "
    "<replacedElement> object's parent Model.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1021005
  { CompReplacedElementDeletionRef, 
    "The 'comp:deletion' attribute must point to a <deletion>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:deletion' attribute on a <replacedElement> "
    "object must be the identifier of a <deletion> present in the "
    "<replacedElement> object's parent Model.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1021006
  { CompReplacedElementConvFactorRef, 
    "The 'comp:conversionFactor attribute must point to a <parameter>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:conversionFactor' attribute on a "
    "<replacedElement> object must be the identifier of a <parameter> "
    "present in the <replacedElement> object's parent Model",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1021010
  { CompReplacedElementSameReference, 
    "No <replacedElement> refer to same object",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "No two <replacedElement> objects in the same Model may reference the same "
    "object unless that object is a <deletion>",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1021011
  { CompReplacedElementNoDelAndConvFact, 
    "No <replacedElement> with deletion and conversionfactor",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "If a <replacedElement> uses the 'comp:deletion' attribute, then it "
    "should not also use the 'comp:conversionFactor' attribute.",
    { "L3V1 Comp V1 Section 3.6.2"
    }
  },

  // 1021101
  { CompReplacedByMustRefObject, 
    "ReplacedBy must reference an object",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <replacedBy> object must point to another object; that "
    "is, a <replacedBy> object must always have a value for one of the "
    "attributes 'comp:portRef', 'comp:idRef', 'comp:unitRef' or "
    "'comp:metaIdRef'.",
    { "L3V1 Comp V1 Section 3.6.4"
    }
  },

  // 1021102
  { CompReplacedByMustRefOnlyOne, 
    "ReplacedBy must reference only one other object.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <replacedBy> object can only point to one other "
    "object; that is, a given <replacedBy> object can only have a value "
    "for one of the attributes 'comp:portRef', 'comp:idRef', 'comp:unitRef', "
    "or 'comp:metaIdRef'.",
    { "L3V1 Comp V1 Section 3.6.4"
    }
  },

  // 1021103
  { CompReplacedByAllowedAttributes, 
    "Allowed attributes on <replacedBy>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "A <replacedBy> object must have a value for the required attribute "
    "'comp:submodelRef', and a value for one, and only one, of the following "
    "attributes: 'comp:portRef', 'comp:idRef', 'comp:unitRef' "
    "or 'comp:metaIdRef'. No other attributes from "
    "the HierarchicalModel Composition namespace are permitted on a "
    "<replacedElement> object.",
    { "L3V1 Comp V1 Section 3.6.4"
    }
  },

  // 1021104
  { CompReplacedBySubModelRef, 
    "The 'comp:submodelRef' attribute must point to a <submodel>",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The value of a 'comp:submodelRef' attribute on a <replacedBy> "
    "object must be the identifier of a <submodel> present in the "
    "<replacedBy> object's parent Model.",
    { "L3V1 Comp V1 Section 3.6.4"
    }
  },

  // 1021201
  { CompMustReplaceSameClass, 
    "Replaced classes must match.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "If one element replaces another, whether it is the target of a "
    "<replacedBy> element, or whether it has a child <replacedElement>, "
    "the SBML class of the replacement element must match the SBML class "
    "of the replaced element, with two exceptions: an element of a derived "
    "class may replace an object of its base class (for base classes other "
    "than SBase), and any SBML class with mathematical meaning may "
    "replace a <parameter>. A base class may not replace a derived class, "
    "however, nor may a <parameter> replace some other SBML element with "
    "mathematical meaning.",
    { "L3V1 Comp V1 Section 3.6.5"
    }
  },

  // 1021202
  { CompMustReplaceIDs, 
    "Replaced IDs must be replaced with IDs.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "If one element replaces another, whether it is the target of a "
    "<replacedBy> element, or whether it has a child <replacedElement>, "
    "if the replaced element has the 'id' attribute set, the replacement !"
    "element must also have the 'id' attribute set.",
    { "L3V1 Comp V1 Section 3.6.5"
    }
  },

  // 1021203
  { CompMustReplaceMetaIDs, 
    "Replaced metaids must be replaced with metaids.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "If one element replaces another, whether it is the target of a "
    "<replacedBy> element, or whether it has a child <replacedElement>, "
    "if the replaced element has the 'metaid' attribute set, the replacement "
    "element must also have the 'metaid' attribute set.",
    { "L3V1 Comp V1 Section 3.6.5"
    }
  },

  // 1021204
  { CompMustReplacePackageIDs, 
    "Replaced package IDs must be replaced with package IDs.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "If one element replaces another, whether it is the target of a "
    "<replacedBy> element, or whether it has a child <replacedElement>, "
    "if the replaced element has an identifier attribute from some other "
    "SBML package set, the replacement element must also have that same "
    "identifier attribute set.",
    { "L3V1 Comp V1 Section 3.6.5"
    }
  },

  // 1090101
  { CompUnresolvedReference, 
    "Unresolved reference.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The external model referenced in this model could not be "
    "resolved. ",
    { ""
    }
  },

  // 1090102
  { CompNoModelInReference, 
    "No model in referenced document.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The external document referenced in this model did not contain any models.",
    { ""
    }
  },

  // 1090103
  { CompExtModDefBad, 
    "Referenced <externalModelDefinition> unresolvable.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "An external model definition referenced by an external model "
    "definition in this model was itself unresolvable.",
    { ""
    }
  },

  // 1090104
  { CompModelFlatteningFailed,
    "Model failed to flatten.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "Errors arose during the attempt to flatten the model.",
    { ""
    }
  },

  // 1090105
  { CompFlatModelNotValid,
    "Flat model not valid.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The interpretation the Hierarchical Model Composition constructs to "
    "produce a kind of 'flattened' version of the model devoid of the comp "
    "package constructs must produce a valid SBML Level 3 model.",
    { "L3V1 Comp V1 Appendix A1"
    }
  },

    // 1090106
  { CompLineNumbersUnreliable,
    "Line numbers unreliable.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "Due to the need to instantiate models, modelDefinitions, submodels etc. "
    "for the purposes of validation it is problematic to reliably report "
    "line numbers when performing validation on models using the "
    "Hierarchical Model Composition package." ,
    { ""
    }
  },

    // 1090107
  { CompFlatteningNotRecognisedReqd,
    "Flattening not implemented for required package.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The CompFlatteningConverter has encountered a required package for "
    "which libSBML does not recognize the information.",
    { ""
    }
  },

    // 1090108
  { CompFlatteningNotRecognisedNotReqd,
    "Flattening not implemented for unrequired package.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The CompFlatteningConverter has encountered an unrequired package for "
    "which libSBML does not recognize the information.",
    { ""
    }
  },

    // 1090109
  { CompFlatteningNotImplementedNotReqd,
    "Flattening not implemented for unrequired package.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The CompFlatteningConverter has encountered an unrequired package for "
    "which "
    "the necessary routines to allow flattening have not yet been implemented. "
    "" ,
    { ""
    }
  },

    // 1090110
  { CompFlatteningNotImplementedReqd,
    "Flattening not implemented for required package.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The CompFlatteningConverter has encountered a required package for which "
    "the necessary routines to allow flattening have not yet been implemented. "
    "" ,
    { ""
    }
  },

  // 1090111
  { CompFlatteningWarning,
    "Flattening reference may come from package.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The CompFlatteningConverter has encountered an unknown reference which may "
    "be due to the presence of an unknown package."
    "" ,
    { ""
    }
  },

  // 1090112
  { CompDeprecatedDeleteFunction,
    "The performDeletions functions is deprecated.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The software used to process this hierarchical model used the deprecated "
    "function performDeletions to do so.  Unfortunately, it is "
    "impossible to properly use this function "
    "as it was originally designed, "
    "without some models either causing the program to crash, or causing them "
    "to be interpreted incorrectly.  Instead, the software should use "
    "collectDeletionsAndDeleteCompConstructs, in conjunction with "
    "collectRenameAndConvertReplacements and removeCollectedElements "
    "to properly process hierarchical models."
    "" ,
    { ""
    }
  },

  // 1090113
  { CompDeprecatedReplaceFunction,
    "The performReplacementsAndConversions functions is deprecated.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The software used to process this hierarchical model used the deprecated "
    "function performReplacementsAndConversions to do so.  Unfortunately, it is "
    "impossible to properly use this function "
    "as it was originally designed, "
    "without some models either causing the program to crash, or causing them "
    "to be interpreted incorrectly.  Instead, the software should use "
    "collectDeletionsAndDeleteCompConstructs, in conjunction with "
    "collectRenameAndConvertReplacements and removeCollectedElements "
    "to properly process hierarchical models."
    "" ,
    { ""
    }
  },

  // 1090114
  { CompDeletedReplacement,
    "Element deleted before a subelement could be replaced.",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_ERROR,
    "The model contained a deletion whose subelement was replaced.  This "
    "is perfectly legal, but unfortunately, the subroutine used to implement "
    "this actually removed the deleted element and all of its children before "
    "replacing the child, making it impossible to discover any IDs that need to "
    "be replaced."
    "" ,
    { ""
    }
  },

  // 1090115
  { CompIdRefMayReferenceUnknownPackage,
    "The 'comp:idRef' attribute must be the 'id' of a model element",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The value of a 'comp:idRef' attribute on an <sBaseRef> object must "
    "be the identifier of an object contained in (that is, within the "
    "SId namespace of) the <model> referenced by that <sBaseRef>. This "
    "includes objects with 'id' attributes defined in packages other "
    "than SBML Level 3 Core or the Hierarchical Model Composition "
    "package.",
    { ""
    }
  },

  // 1090116
  { CompMetaIdRefMayReferenceUnknownPkg,
    "The 'comp:metaIdRef' attribute must be the 'metaid' of a model element",
    LIBSBML_CAT_GENERAL_CONSISTENCY, 
    LIBSBML_SEV_WARNING,
    "The value of a 'comp:metaIdRef' attribute on an <sBaseRef> object "
    "must be the value of a 'comp:metaid' attribute on an element contained "
    "in the <model> referenced by that <sBaseRef>.",
    { ""
    }
  }



};

LIBSBML_CPP_NAMESPACE_END

#endif
/** @endcond */