@itwin/core-backend 5.1.0-dev.59 → 5.1.0-dev.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (37) hide show
  1. package/lib/cjs/IModelIncrementalSchemaLocater.d.ts +36 -0
  2. package/lib/cjs/IModelIncrementalSchemaLocater.d.ts.map +1 -0
  3. package/lib/cjs/IModelIncrementalSchemaLocater.js +69 -0
  4. package/lib/cjs/IModelIncrementalSchemaLocater.js.map +1 -0
  5. package/lib/esm/IModelIncrementalSchemaLocater.d.ts +36 -0
  6. package/lib/esm/IModelIncrementalSchemaLocater.d.ts.map +1 -0
  7. package/lib/esm/IModelIncrementalSchemaLocater.js +65 -0
  8. package/lib/esm/IModelIncrementalSchemaLocater.js.map +1 -0
  9. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/old.config.d.ts +60 -0
  10. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/old.config.d.ts.map +1 -0
  11. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/old.config.js +69 -0
  12. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/old.config.js.map +1 -0
  13. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/simple.config.d.ts +1442 -0
  14. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/simple.config.d.ts.map +1 -0
  15. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/simple.config.js +817 -0
  16. package/lib/esm/test/assets/IncrementalSchemaLocater/configs/simple.config.js.map +1 -0
  17. package/lib/esm/test/incrementalSchemaLocater/ECSqlQueries.test.d.ts +2 -0
  18. package/lib/esm/test/incrementalSchemaLocater/ECSqlQueries.test.d.ts.map +1 -0
  19. package/lib/esm/test/incrementalSchemaLocater/ECSqlQueries.test.js +343 -0
  20. package/lib/esm/test/incrementalSchemaLocater/ECSqlQueries.test.js.map +1 -0
  21. package/lib/esm/test/incrementalSchemaLocater/IncrementalLoading.test.d.ts +2 -0
  22. package/lib/esm/test/incrementalSchemaLocater/IncrementalLoading.test.d.ts.map +1 -0
  23. package/lib/esm/test/incrementalSchemaLocater/IncrementalLoading.test.js +207 -0
  24. package/lib/esm/test/incrementalSchemaLocater/IncrementalLoading.test.js.map +1 -0
  25. package/lib/esm/test/incrementalSchemaLocater/utils/IModelSchemaLocater.d.ts +11 -0
  26. package/lib/esm/test/incrementalSchemaLocater/utils/IModelSchemaLocater.d.ts.map +1 -0
  27. package/lib/esm/test/incrementalSchemaLocater/utils/IModelSchemaLocater.js +36 -0
  28. package/lib/esm/test/incrementalSchemaLocater/utils/IModelSchemaLocater.js.map +1 -0
  29. package/lib/esm/test/incrementalSchemaLocater/utils/IncrementalTestHelper.d.ts +17 -0
  30. package/lib/esm/test/incrementalSchemaLocater/utils/IncrementalTestHelper.d.ts.map +1 -0
  31. package/lib/esm/test/incrementalSchemaLocater/utils/IncrementalTestHelper.js +116 -0
  32. package/lib/esm/test/incrementalSchemaLocater/utils/IncrementalTestHelper.js.map +1 -0
  33. package/lib/esm/test/incrementalSchemaLocater/utils/TestSqlSchemaLocater.d.ts +9 -0
  34. package/lib/esm/test/incrementalSchemaLocater/utils/TestSqlSchemaLocater.d.ts.map +1 -0
  35. package/lib/esm/test/incrementalSchemaLocater/utils/TestSqlSchemaLocater.js +20 -0
  36. package/lib/esm/test/incrementalSchemaLocater/utils/TestSqlSchemaLocater.js.map +1 -0
  37. package/package.json +16 -11
@@ -0,0 +1,817 @@
1
+ /* eslint-disable @typescript-eslint/naming-convention */
2
+ export default {
3
+ "label": "Simple Profile iModel",
4
+ "bimFile": "SimpleIModel.bim",
5
+ "schemas": [
6
+ {
7
+ "name": "SimpleSchema",
8
+ "references": [
9
+ "BisCore",
10
+ "CoreCustomAttributes",
11
+ "Formats",
12
+ "Units"
13
+ ],
14
+ "itemCount": 30,
15
+ "checkStubs": [
16
+ {
17
+ "item": "SimpleSchema.UnitSystem_Test",
18
+ "properties": {
19
+ "schemaItemType": "UnitSystem",
20
+ "label": "Test",
21
+ "description": "UnitSystem Test"
22
+ }
23
+ },
24
+ {
25
+ "item": "SimpleSchema.Phenomenon_Test",
26
+ "properties": {
27
+ "schemaItemType": "Phenomenon",
28
+ "label": "Test",
29
+ "description": "Phenomenon Test",
30
+ "definition": "TEST"
31
+ }
32
+ },
33
+ {
34
+ "item": "SimpleSchema.Category_Test",
35
+ "properties": {
36
+ "schemaItemType": "PropertyCategory",
37
+ "label": "Test",
38
+ "description": "PropertyCategory Test",
39
+ "priority": 1000
40
+ }
41
+ },
42
+ {
43
+ "item": "SimpleSchema.Enumeration_Integer",
44
+ "properties": {
45
+ "schemaItemType": "Enumeration",
46
+ "label": "Test",
47
+ "description": "Enumeration Integer",
48
+ "type": "int",
49
+ "isStrict": true,
50
+ "enumerators": [
51
+ {
52
+ "name": "Enumerator0",
53
+ "value": 0,
54
+ "label": "0",
55
+ "description": "Enumerator 0"
56
+ },
57
+ {
58
+ "name": "Enumerator1",
59
+ "value": 1,
60
+ "label": "1",
61
+ "description": "Enumerator 1"
62
+ }
63
+ ]
64
+ }
65
+ },
66
+ {
67
+ "item": "SimpleSchema.Enumeration_String",
68
+ "properties": {
69
+ "schemaItemType": "Enumeration",
70
+ "label": "Test",
71
+ "description": "Enumeration String",
72
+ "type": "string",
73
+ "isStrict": false,
74
+ "enumerators": [
75
+ {
76
+ "name": "Enumerator0",
77
+ "value": "0"
78
+ },
79
+ {
80
+ "name": "Enumerator1",
81
+ "value": "1"
82
+ }
83
+ ]
84
+ }
85
+ },
86
+ {
87
+ "item": "SimpleSchema.Unit_Test1",
88
+ "properties": {
89
+ "schemaItemType": "Unit",
90
+ "label": "Test1",
91
+ "description": "Unit Test1",
92
+ "phenomenon": "SimpleSchema.Phenomenon_Test",
93
+ "unitSystem": "SimpleSchema.UnitSystem_Test",
94
+ "definition": "TEST1",
95
+ "numerator": 10.0
96
+ }
97
+ },
98
+ {
99
+ "item": "SimpleSchema.Unit_Test2",
100
+ "properties": {
101
+ "schemaItemType": "Unit",
102
+ "label": "Test2",
103
+ "description": "Unit Test2",
104
+ "phenomenon": "Units.TEMPERATURE",
105
+ "unitSystem": "Units.USCUSTOM",
106
+ "definition": "TEST2",
107
+ "numerator": 5.0,
108
+ "denominator": 3.0,
109
+ "offset": 0.01325
110
+ }
111
+ },
112
+ {
113
+ "item": "SimpleSchema.InvertedUnit_Test1",
114
+ "properties": {
115
+ "schemaItemType": "InvertedUnit",
116
+ "label": "Test1",
117
+ "description": "InvertedUnit Test1",
118
+ "invertsUnit": "SimpleSchema.Unit_Test1",
119
+ "unitSystem": "SimpleSchema.UnitSystem_Test"
120
+ }
121
+ },
122
+ {
123
+ "item": "SimpleSchema.InvertedUnit_Test2",
124
+ "properties": {
125
+ "schemaItemType": "InvertedUnit",
126
+ "label": "Test2",
127
+ "description": "InvertedUnit Test2",
128
+ "invertsUnit": "Units.FT_PER_FT",
129
+ "unitSystem": "Units.USCUSTOM"
130
+ }
131
+ },
132
+ {
133
+ "item": "SimpleSchema.Constant_Test1",
134
+ "properties": {
135
+ "schemaItemType": "Constant",
136
+ "label": "Test1",
137
+ "description": "Constant Test1",
138
+ "phenomenon": "SimpleSchema.Phenomenon_Test",
139
+ "definition": "TEST1",
140
+ "numerator": 1.0e3
141
+ }
142
+ },
143
+ {
144
+ "item": "SimpleSchema.Constant_Test2",
145
+ "properties": {
146
+ "schemaItemType": "Constant",
147
+ "label": "Test2",
148
+ "description": "Constant Test2",
149
+ "phenomenon": "Units.ANGLE",
150
+ "definition": "TEST2",
151
+ "numerator": 180.0,
152
+ "denominator": 0.5
153
+ }
154
+ },
155
+ {
156
+ "item": "SimpleSchema.Format_Station",
157
+ "properties": {
158
+ "schemaItemType": "Format",
159
+ "label": "Test",
160
+ "description": "Format Station",
161
+ "type": "Station",
162
+ "precision": 2,
163
+ "formatTraits": [
164
+ "TrailZeroes",
165
+ "KeepSingleZero",
166
+ "KeepDecimalPoint"
167
+ ],
168
+ "thousandSeparator": " ",
169
+ "decimalSeparator": ",",
170
+ "stationSeparator": "+",
171
+ "stationOffsetSize": 3,
172
+ "minWidth": 3
173
+ }
174
+ },
175
+ {
176
+ "item": "SimpleSchema.Format_Scientific",
177
+ "properties": {
178
+ "schemaItemType": "Format",
179
+ "label": "Test",
180
+ "description": "Format Scientific",
181
+ "type": "Scientific",
182
+ "scientificType": "Normalized",
183
+ "precision": 6,
184
+ "formatTraits": [
185
+ "KeepSingleZero"
186
+ ],
187
+ "decimalSeparator": ",",
188
+ "thousandSeparator": " "
189
+ }
190
+ },
191
+ {
192
+ "item": "SimpleSchema.Format_Decimal",
193
+ "properties": {
194
+ "schemaItemType": "Format",
195
+ "label": "Test",
196
+ "description": "Format Decimal",
197
+ "type": "Decimal",
198
+ "precision": 4,
199
+ "showSignOption": "NoSign",
200
+ "formatTraits": [
201
+ "KeepSingleZero",
202
+ "KeepDecimalPoint"
203
+ ],
204
+ "thousandSeparator": " ",
205
+ "decimalSeparator": ",",
206
+ "minWidth": 3,
207
+ "roundFactor": 0.1
208
+ }
209
+ },
210
+ {
211
+ "item": "SimpleSchema.Format_Fractional",
212
+ "properties": {
213
+ "schemaItemType": "Format",
214
+ "label": "Test",
215
+ "description": "Format Fractional",
216
+ "type": "Fractional",
217
+ "precision": 8,
218
+ "formatTraits": [
219
+ "KeepSingleZero",
220
+ "ShowUnitLabel"
221
+ ],
222
+ "uomSeparator": ""
223
+ }
224
+ },
225
+ {
226
+ "item": "SimpleSchema.KindOfQuantity_Test1",
227
+ "properties": {
228
+ "schemaItemType": "KindOfQuantity",
229
+ "label": "Test1",
230
+ "description": "KindOfQuantity Test1"
231
+ }
232
+ },
233
+ {
234
+ "item": "SimpleSchema.KindOfQuantity_Test2",
235
+ "properties": {
236
+ "schemaItemType": "KindOfQuantity",
237
+ "label": "Test2",
238
+ "description": "KindOfQuantity Test2"
239
+ }
240
+ },
241
+ {
242
+ "item": "SimpleSchema.StructClass_Test1",
243
+ "properties": {
244
+ "schemaItemType": "StructClass",
245
+ "modifier": "Abstract",
246
+ "label": "Test1",
247
+ "description": "StructClass Test1"
248
+ }
249
+ },
250
+ {
251
+ "item": "SimpleSchema.StructClass_Test2",
252
+ "properties": {
253
+ "schemaItemType": "StructClass",
254
+ "modifier": "Sealed",
255
+ "baseClass": "SimpleSchema.StructClass_Test1",
256
+ "label": "Test2",
257
+ "description": "StructClass Test2"
258
+ }
259
+ },
260
+ {
261
+ "item": "SimpleSchema.CustomAttributeClass_Test1",
262
+ "properties": {
263
+ "schemaItemType": "CustomAttributeClass",
264
+ "appliesTo": "AnyClass",
265
+ "modifier": "Abstract",
266
+ "label": "Test1",
267
+ "description": "CustomAttributeClass Test1"
268
+ }
269
+ },
270
+ {
271
+ "item": "SimpleSchema.CustomAttributeClass_Test2",
272
+ "properties": {
273
+ "schemaItemType": "CustomAttributeClass",
274
+ "appliesTo": "AnyProperty",
275
+ "baseClass": "BisCore.CustomHandledProperty",
276
+ "label": "Test2",
277
+ "description": "CustomAttributeClass Test2"
278
+ }
279
+ },
280
+ {
281
+ "item": "SimpleSchema.CustomAttributeClass_Test3",
282
+ "properties": {
283
+ "schemaItemType": "CustomAttributeClass",
284
+ "modifier": "Sealed",
285
+ "appliesTo": "Any",
286
+ "baseClass": "SimpleSchema.CustomAttributeClass_Test1",
287
+ "label": "Test3",
288
+ "description": "CustomAttributeClass Test3"
289
+ }
290
+ },
291
+ {
292
+ "item": "SimpleSchema.IMixin_Test1",
293
+ "properties": {
294
+ "schemaItemType": "Mixin",
295
+ "appliesTo": "BisCore.Element",
296
+ "label": "Test1",
297
+ "description": "Mixin Test1"
298
+ }
299
+ },
300
+ {
301
+ "item": "SimpleSchema.IMixin_Test2",
302
+ "properties": {
303
+ "schemaItemType": "Mixin",
304
+ "baseClass": "SimpleSchema.IMixin_Test1",
305
+ "appliesTo": "BisCore.PhysicalElement",
306
+ "label": "Test2",
307
+ "description": "Mixin Test2"
308
+ }
309
+ },
310
+ {
311
+ "item": "SimpleSchema.EntityClass_Test1",
312
+ "properties": {
313
+ "schemaItemType": "EntityClass",
314
+ "baseClass": "BisCore.PhysicalElement",
315
+ "label": "Test1",
316
+ "description": "EntityClass Test1",
317
+ "mixins": [
318
+ "SimpleSchema.IMixin_Test1"
319
+ ]
320
+ }
321
+ },
322
+ {
323
+ "item": "SimpleSchema.EntityClass_Test2",
324
+ "properties": {
325
+ "schemaItemType": "EntityClass",
326
+ "modifier": "Abstract",
327
+ "baseClass": "SimpleSchema.EntityClass_Test1",
328
+ "label": "Test2",
329
+ "description": "EntityClass Test2",
330
+ "mixins": [
331
+ "SimpleSchema.IMixin_Test2"
332
+ ]
333
+ }
334
+ },
335
+ {
336
+ "item": "SimpleSchema.EntityClass_Test3",
337
+ "properties": {
338
+ "schemaItemType": "EntityClass",
339
+ "modifier": "Sealed",
340
+ "baseClass": "SimpleSchema.EntityClass_Test2",
341
+ "label": "Test3",
342
+ "description": "EntityClass Test3"
343
+ }
344
+ },
345
+ {
346
+ "item": "SimpleSchema.EntityClass_Test3",
347
+ "properties": {
348
+ "schemaItemType": "EntityClass",
349
+ "baseClass": "SimpleSchema.EntityClass_Test2",
350
+ "label": "Test3",
351
+ "description": "EntityClass Test3"
352
+ }
353
+ },
354
+ {
355
+ "item": "SimpleSchema.RelationshipClass_Test1",
356
+ "properties": {
357
+ "schemaItemType": "RelationshipClass",
358
+ "modifier": "Sealed",
359
+ "baseClass": "BisCore.ElementRefersToElements",
360
+ "label": "Test1",
361
+ "description": "RelationshipClass Test1",
362
+ "strength": "Referencing",
363
+ "strengthDirection": "Forward"
364
+ }
365
+ },
366
+ {
367
+ "item": "SimpleSchema.RelationshipClass_Test2",
368
+ "properties": {
369
+ "schemaItemType": "RelationshipClass",
370
+ "modifier": "None",
371
+ "baseClass": "BisCore.ModelModelsElement",
372
+ "label": "Test2",
373
+ "description": "RelationshipClass Test2",
374
+ "strength": "Embedding",
375
+ "strengthDirection": "Backward"
376
+ }
377
+ }
378
+ ],
379
+ "checkHierachy": {
380
+ "derivedClass": "SimpleSchema.EntityClass_Test3",
381
+ "baseClass": "SimpleSchema.IMixin_Test1"
382
+ },
383
+ "checkFullLoad": [
384
+ {
385
+ "item": "SimpleSchema.Format_Decimal",
386
+ "properties": {
387
+ "schemaItemType": "Format",
388
+ "label": "Test",
389
+ "description": "Format Decimal",
390
+ "type": "Decimal",
391
+ "precision": 4,
392
+ "showSignOption": "NoSign",
393
+ "formatTraits": [
394
+ "KeepSingleZero",
395
+ "KeepDecimalPoint"
396
+ ],
397
+ "thousandSeparator": " ",
398
+ "decimalSeparator": ",",
399
+ "minWidth": 3,
400
+ "roundFactor": 0.1,
401
+ "composite": {
402
+ "spacer": "",
403
+ "includeZero": false,
404
+ "units": [
405
+ {
406
+ "name": "Units.G",
407
+ "label": "g"
408
+ },
409
+ {
410
+ "name": "Units.MG",
411
+ "label": "mg"
412
+ }
413
+ ]
414
+ }
415
+ }
416
+ },
417
+ {
418
+ "item": "SimpleSchema.Format_Fractional",
419
+ "properties": {
420
+ "schemaItemType": "Format",
421
+ "label": "Test",
422
+ "description": "Format Fractional",
423
+ "type": "Fractional",
424
+ "precision": 8,
425
+ "formatTraits": [
426
+ "KeepSingleZero",
427
+ "ShowUnitLabel"
428
+ ],
429
+ "uomSeparator": "",
430
+ "composite": {
431
+ "spacer": "",
432
+ "units": [
433
+ {
434
+ "name": "SimpleSchema.Unit_Test1",
435
+ "label": "test"
436
+ }
437
+ ]
438
+ }
439
+ }
440
+ },
441
+ {
442
+ "item": "SimpleSchema.KindOfQuantity_Test1",
443
+ "properties": {
444
+ "schemaItemType": "KindOfQuantity",
445
+ "label": "Test1",
446
+ "description": "KindOfQuantity Test1",
447
+ "relativeError": 0.001,
448
+ "persistenceUnit": "SimpleSchema.Unit_Test1",
449
+ "presentationUnits": [
450
+ "SimpleSchema.Format_Fractional(4)[SimpleSchema.Unit_Test1]"
451
+ ]
452
+ }
453
+ },
454
+ {
455
+ "item": "SimpleSchema.KindOfQuantity_Test2",
456
+ "properties": {
457
+ "schemaItemType": "KindOfQuantity",
458
+ "label": "Test2",
459
+ "description": "KindOfQuantity Test2",
460
+ "relativeError": 0.0001,
461
+ "persistenceUnit": "Units.MG",
462
+ "presentationUnits": [
463
+ "Formats.DefaultRealU(2)[Units.MG]",
464
+ "Formats.DefaultRealU(2)[Units.G]"
465
+ ]
466
+ }
467
+ },
468
+ {
469
+ "item": "SimpleSchema.StructClass_Test1",
470
+ "properties": {
471
+ "schemaItemType": "StructClass",
472
+ "modifier": "Abstract",
473
+ "label": "Test1",
474
+ "description": "StructClass Test1",
475
+ "properties": [
476
+ {
477
+ "name": "DoubleProperty",
478
+ "type": "PrimitiveProperty",
479
+ "category": "SimpleSchema.Category_Test",
480
+ "label": "Double",
481
+ "description": "Double Property",
482
+ "typeName": "double"
483
+ },
484
+ {
485
+ "name": "Point3dProperty",
486
+ "type": "PrimitiveProperty",
487
+ "isReadOnly": true,
488
+ "label": "Point3",
489
+ "description": "Point3 Property",
490
+ "typeName": "point3d",
491
+ "customAttributes": [
492
+ {
493
+ "className": "CoreCustomAttributes.HiddenProperty"
494
+ },
495
+ {
496
+ "className": "BisCore.CustomHandledProperty"
497
+ }
498
+ ]
499
+ },
500
+ {
501
+ "name": "LongArrayProperty",
502
+ "type": "PrimitiveArrayProperty",
503
+ "minOccurs": 0,
504
+ "maxOccurs": 52,
505
+ "label": "LongArray",
506
+ "description": "LongArray Property",
507
+ "typeName": "long"
508
+ }
509
+ ]
510
+ }
511
+ },
512
+ {
513
+ "item": "SimpleSchema.StructClass_Test2",
514
+ "properties": {
515
+ "schemaItemType": "StructClass",
516
+ "modifier": "Sealed",
517
+ "baseClass": "SimpleSchema.StructClass_Test1",
518
+ "label": "Test2",
519
+ "description": "StructClass Test2",
520
+ "customAttributes": [
521
+ {
522
+ "className": "BisCore.ClassHasHandler"
523
+ }
524
+ ],
525
+ "properties": [
526
+ {
527
+ "name": "DateTimeProperty",
528
+ "type": "PrimitiveProperty",
529
+ "kindOfQuantity": "SimpleSchema.KindOfQuantity_Test1",
530
+ "label": "DateTime",
531
+ "description": "DateTime Property",
532
+ "typeName": "dateTime"
533
+ },
534
+ {
535
+ "name": "BooleanProperty",
536
+ "type": "PrimitiveProperty",
537
+ "priority": 1001,
538
+ "label": "Boolean",
539
+ "description": "Boolean Property",
540
+ "typeName": "boolean"
541
+ },
542
+ {
543
+ "name": "StringEnumerationArrayProperty",
544
+ "type": "PrimitiveArrayProperty",
545
+ "minOccurs": 0,
546
+ "maxOccurs": 3,
547
+ "label": "StringEnumerationArray",
548
+ "description": "StringEnumerationArray Property",
549
+ "typeName": "SimpleSchema.Enumeration_String"
550
+ }
551
+ ]
552
+ }
553
+ },
554
+ {
555
+ "item": "SimpleSchema.CustomAttributeClass_Test1",
556
+ "properties": {
557
+ "schemaItemType": "CustomAttributeClass",
558
+ "appliesTo": "AnyClass",
559
+ "modifier": "Abstract",
560
+ "label": "Test1",
561
+ "description": "CustomAttributeClass Test1",
562
+ "properties": [
563
+ {
564
+ "name": "StringProperty",
565
+ "type": "PrimitiveProperty",
566
+ "label": "String",
567
+ "description": "String Property",
568
+ "extendedTypeName": "Json",
569
+ "minLength": 1,
570
+ "maxLength": 150,
571
+ "typeName": "string"
572
+ },
573
+ {
574
+ "name": "StructProperty",
575
+ "type": "StructProperty",
576
+ "label": "Struct",
577
+ "description": "Struct Property",
578
+ "typeName": "SimpleSchema.StructClass_Test2"
579
+ }
580
+ ]
581
+ }
582
+ },
583
+ {
584
+ "item": "SimpleSchema.CustomAttributeClass_Test2",
585
+ "properties": {
586
+ "schemaItemType": "CustomAttributeClass",
587
+ "appliesTo": "AnyProperty",
588
+ "baseClass": "BisCore.CustomHandledProperty",
589
+ "label": "Test2",
590
+ "description": "CustomAttributeClass Test2",
591
+ "customAttributes": [
592
+ {
593
+ "className": "SimpleSchema.CustomAttributeClass_Test3"
594
+ }
595
+ ],
596
+ "properties": [
597
+ {
598
+ "name": "BinaryProperty",
599
+ "type": "PrimitiveProperty",
600
+ "label": "Binary",
601
+ "description": "Binary Property",
602
+ "typeName": "binary"
603
+ },
604
+ {
605
+ "name": "IntegerArrayProperty",
606
+ "type": "PrimitiveArrayProperty",
607
+ "minOccurs": 0,
608
+ "maxOccurs": 150,
609
+ "maxValue": 1000,
610
+ "label": "IntegerArray",
611
+ "description": "IntegerArray Property",
612
+ "typeName": "int"
613
+ }
614
+ ]
615
+ }
616
+ },
617
+ {
618
+ "item": "SimpleSchema.CustomAttributeClass_Test3",
619
+ "properties": {
620
+ "schemaItemType": "CustomAttributeClass",
621
+ "modifier": "Sealed",
622
+ "appliesTo": "Any",
623
+ "baseClass": "SimpleSchema.CustomAttributeClass_Test1",
624
+ "label": "Test3",
625
+ "description": "CustomAttributeClass Test3",
626
+ "properties": [
627
+ {
628
+ "name": "IntegerProperty",
629
+ "type": "PrimitiveProperty",
630
+ "minValue": 1,
631
+ "maxValue": 101,
632
+ "label": "Integer",
633
+ "description": "Integer Property",
634
+ "typeName": "int",
635
+ "customAttributes": [
636
+ {
637
+ "className": "BisCore.AutoHandledProperty",
638
+ "StatementTypes": 3
639
+ }
640
+ ]
641
+ },
642
+ {
643
+ "name": "IntegerEnumerationArray",
644
+ "type": "PrimitiveArrayProperty",
645
+ "label": "IntegerEnumerationArray",
646
+ "description": "IntegerEnumerationArray Property",
647
+ "minOccurs": 0,
648
+ "maxOccurs": 2147483647,
649
+ "typeName": "BisCore.SectionType"
650
+ }
651
+ ]
652
+ }
653
+ },
654
+ {
655
+ "item": "SimpleSchema.IMixin_Test1",
656
+ "properties": {
657
+ "schemaItemType": "Mixin",
658
+ "appliesTo": "BisCore.Element",
659
+ "label": "Test1",
660
+ "description": "Mixin Test1",
661
+ "properties": [
662
+ {
663
+ "name": "LongProperty",
664
+ "type": "PrimitiveProperty",
665
+ "category": "SimpleSchema.Category_Test",
666
+ "label": "Long",
667
+ "description": "Long Property",
668
+ "typeName": "long"
669
+ },
670
+ {
671
+ "name": "BooleanArrayProperty",
672
+ "type": "PrimitiveArrayProperty",
673
+ "minOccurs": 1,
674
+ "maxOccurs": 5,
675
+ "label": "BooleanArray",
676
+ "description": "BooleanArray Property",
677
+ "typeName": "boolean"
678
+ }
679
+ ],
680
+ "customAttributes": [
681
+ {
682
+ "className": "SimpleSchema.CustomAttributeClass_Test3"
683
+ }
684
+ ]
685
+ }
686
+ },
687
+ {
688
+ "item": "SimpleSchema.IMixin_Test2",
689
+ "properties": {
690
+ "schemaItemType": "Mixin",
691
+ "baseClass": "SimpleSchema.IMixin_Test1",
692
+ "appliesTo": "BisCore.PhysicalElement",
693
+ "label": "Test2",
694
+ "description": "Mixin Test2",
695
+ "properties": [
696
+ {
697
+ "name": "IGeometryProperty",
698
+ "type": "PrimitiveProperty",
699
+ "label": "IGeometry",
700
+ "description": "IGeometry Property",
701
+ "typeName": "Bentley.Geometry.Common.IGeometry",
702
+ "customAttributes": [
703
+ {
704
+ "className": "CoreCustomAttributes.Deprecated",
705
+ "Description": "Deprecated renamed property."
706
+ },
707
+ {
708
+ "className": "CoreCustomAttributes.HiddenProperty"
709
+ }
710
+ ]
711
+ },
712
+ {
713
+ "name": "DoubleArrayProperty",
714
+ "type": "PrimitiveArrayProperty",
715
+ "minValue": 0.1,
716
+ "maxValue": 9.9,
717
+ "maxOccurs": 10,
718
+ "minOccurs": 2,
719
+ "label": "DoubleArray",
720
+ "description": "DoubleArray Property",
721
+ "typeName": "double"
722
+ }
723
+ ]
724
+ }
725
+ },
726
+ {
727
+ "item": "SimpleSchema.EntityClass_Test3",
728
+ "properties": {
729
+ "schemaItemType": "EntityClass",
730
+ "modifier": "Sealed",
731
+ "baseClass": "SimpleSchema.EntityClass_Test2",
732
+ "label": "Test3",
733
+ "description": "EntityClass Test3",
734
+ "properties": [
735
+ {
736
+ "name": "StringEnumerationProperty",
737
+ "type": "PrimitiveProperty",
738
+ "label": "StringEnumeration",
739
+ "description": "StringEnumeration Property",
740
+ "typeName": "CoreCustomAttributes.ProductionStatusValue"
741
+ }
742
+ ]
743
+ }
744
+ },
745
+ {
746
+ "item": "SimpleSchema.RelationshipClass_Test1",
747
+ "properties": {
748
+ "schemaItemType": "RelationshipClass",
749
+ "modifier": "Sealed",
750
+ "baseClass": "BisCore.ElementRefersToElements",
751
+ "label": "Test1",
752
+ "description": "RelationshipClass Test1",
753
+ "strength": "Referencing",
754
+ "strengthDirection": "Forward",
755
+ "customAttributes": [
756
+ {
757
+ "className": "CoreCustomAttributes.HiddenClass",
758
+ "Show": false
759
+ }
760
+ ],
761
+ "properties": [
762
+ {
763
+ "name": "Point2dArrayProperty",
764
+ "type": "PrimitiveArrayProperty",
765
+ "minOccurs": 5,
766
+ "maxOccurs": 75,
767
+ "label": "Point2dArray",
768
+ "description": "Point2dArray Property",
769
+ "typeName": "point2d"
770
+ },
771
+ {
772
+ "name": "Point3dArrayProperty",
773
+ "type": "PrimitiveArrayProperty",
774
+ "minOccurs": 3,
775
+ "maxOccurs": 13,
776
+ "label": "Point3dArray",
777
+ "description": "Point3dArray Property",
778
+ "typeName": "point3d"
779
+ }
780
+ ],
781
+ "source": {
782
+ "multiplicity": "(0..*)",
783
+ "roleLabel": "refers to",
784
+ "polymorphic": true,
785
+ "abstractConstraint": "BisCore.Element",
786
+ "constraintClasses": [
787
+ "BisCore.Element"
788
+ ],
789
+ "customAttributes": [
790
+ {
791
+ "className": "SimpleSchema.CustomAttributeClass_Test4",
792
+ "StringProperty": "Source"
793
+ }
794
+ ]
795
+ },
796
+ "target": {
797
+ "multiplicity": "(0..*)",
798
+ "roleLabel": "is referenced by",
799
+ "polymorphic": true,
800
+ "abstractConstraint": "BisCore.Element",
801
+ "constraintClasses": [
802
+ "BisCore.Element"
803
+ ],
804
+ "customAttributes": [
805
+ {
806
+ "className": "SimpleSchema.CustomAttributeClass_Test4",
807
+ "StringProperty": "Target"
808
+ }
809
+ ]
810
+ }
811
+ }
812
+ }
813
+ ]
814
+ }
815
+ ]
816
+ };
817
+ //# sourceMappingURL=simple.config.js.map