expressir 0.2.24-x64-mingw32 → 0.2.25-x64-mingw32

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.
@@ -1,3 +1,4 @@
1
1
  SCHEMA single_schema;
2
2
  ENTITY empty_entity; END_ENTITY;
3
+ ENTITY subtype_empty_entity SUBTYPE OF (empty_entity); END_ENTITY;
3
4
  END_SCHEMA;
@@ -7,3 +7,9 @@ schemas:
7
7
  entities:
8
8
  - _class: Expressir::Model::Entity
9
9
  id: empty_entity
10
+ - _class: Expressir::Model::Entity
11
+ id: subtype_empty_entity
12
+ subtype_of:
13
+ - _class: Expressir::Model::Expressions::SimpleReference
14
+ id: empty_entity
15
+ base_path: single_schema.empty_entity
@@ -3,4 +3,8 @@ SCHEMA single_schema;
3
3
  ENTITY empty_entity;
4
4
  END_ENTITY;
5
5
 
6
+ ENTITY subtype_empty_entity
7
+ SUBTYPE OF (empty_entity);
8
+ END_ENTITY;
9
+
6
10
  END_SCHEMA;
@@ -10,10 +10,24 @@ schemas:
10
10
  source: |-
11
11
  ENTITY empty_entity;
12
12
  END_ENTITY;
13
+ - _class: Expressir::Model::Entity
14
+ id: subtype_empty_entity
15
+ subtype_of:
16
+ - _class: Expressir::Model::Expressions::SimpleReference
17
+ id: empty_entity
18
+ base_path: single_schema.empty_entity
19
+ source: |-
20
+ ENTITY subtype_empty_entity
21
+ SUBTYPE OF (empty_entity);
22
+ END_ENTITY;
13
23
  source: |-
14
24
  SCHEMA single_schema;
15
25
 
16
26
  ENTITY empty_entity;
17
27
  END_ENTITY;
18
28
 
29
+ ENTITY subtype_empty_entity
30
+ SUBTYPE OF (empty_entity);
31
+ END_ENTITY;
32
+
19
33
  END_SCHEMA;
@@ -135,24 +135,29 @@ schemas:
135
135
  supertype_expression:
136
136
  _class: Expressir::Model::Expressions::SimpleReference
137
137
  id: empty_entity
138
+ base_path: syntax_schema.empty_entity
138
139
  - _class: Expressir::Model::Entity
139
140
  id: supertype_constraint_entity
140
141
  supertype_expression:
141
142
  _class: Expressir::Model::Expressions::SimpleReference
142
143
  id: empty_entity
144
+ base_path: syntax_schema.empty_entity
143
145
  - _class: Expressir::Model::Entity
144
146
  id: subtype_entity
145
147
  subtype_of:
146
148
  - _class: Expressir::Model::Expressions::SimpleReference
147
149
  id: empty_entity
150
+ base_path: syntax_schema.empty_entity
148
151
  - _class: Expressir::Model::Entity
149
152
  id: supertype_constraint_subtype_entity
150
153
  supertype_expression:
151
154
  _class: Expressir::Model::Expressions::SimpleReference
152
155
  id: empty_entity
156
+ base_path: syntax_schema.empty_entity
153
157
  subtype_of:
154
158
  - _class: Expressir::Model::Expressions::SimpleReference
155
159
  id: empty_entity
160
+ base_path: syntax_schema.empty_entity
156
161
  - _class: Expressir::Model::Entity
157
162
  id: attribute_entity
158
163
  attributes:
@@ -201,6 +206,7 @@ schemas:
201
206
  subtype_of:
202
207
  - _class: Expressir::Model::Expressions::SimpleReference
203
208
  id: attribute_entity
209
+ base_path: syntax_schema.attribute_entity
204
210
  attributes:
205
211
  - _class: Expressir::Model::Attribute
206
212
  kind: :EXPLICIT
@@ -214,6 +220,7 @@ schemas:
214
220
  entity:
215
221
  _class: Expressir::Model::Expressions::SimpleReference
216
222
  id: attribute_entity
223
+ base_path: syntax_schema.attribute_entity
217
224
  attribute:
218
225
  _class: Expressir::Model::Expressions::SimpleReference
219
226
  id: test
@@ -224,6 +231,7 @@ schemas:
224
231
  subtype_of:
225
232
  - _class: Expressir::Model::Expressions::SimpleReference
226
233
  id: attribute_entity
234
+ base_path: syntax_schema.attribute_entity
227
235
  attributes:
228
236
  - _class: Expressir::Model::Attribute
229
237
  id: test2
@@ -238,6 +246,7 @@ schemas:
238
246
  entity:
239
247
  _class: Expressir::Model::Expressions::SimpleReference
240
248
  id: attribute_entity
249
+ base_path: syntax_schema.attribute_entity
241
250
  attribute:
242
251
  _class: Expressir::Model::Expressions::SimpleReference
243
252
  id: test
@@ -259,6 +268,7 @@ schemas:
259
268
  subtype_of:
260
269
  - _class: Expressir::Model::Expressions::SimpleReference
261
270
  id: attribute_entity
271
+ base_path: syntax_schema.attribute_entity
262
272
  attributes:
263
273
  - _class: Expressir::Model::Attribute
264
274
  kind: :DERIVED
@@ -272,6 +282,7 @@ schemas:
272
282
  entity:
273
283
  _class: Expressir::Model::Expressions::SimpleReference
274
284
  id: attribute_entity
285
+ base_path: syntax_schema.attribute_entity
275
286
  attribute:
276
287
  _class: Expressir::Model::Expressions::SimpleReference
277
288
  id: test
@@ -285,6 +296,7 @@ schemas:
285
296
  subtype_of:
286
297
  - _class: Expressir::Model::Expressions::SimpleReference
287
298
  id: attribute_entity
299
+ base_path: syntax_schema.attribute_entity
288
300
  attributes:
289
301
  - _class: Expressir::Model::Attribute
290
302
  id: test2
@@ -299,6 +311,7 @@ schemas:
299
311
  entity:
300
312
  _class: Expressir::Model::Expressions::SimpleReference
301
313
  id: attribute_entity
314
+ base_path: syntax_schema.attribute_entity
302
315
  attribute:
303
316
  _class: Expressir::Model::Expressions::SimpleReference
304
317
  id: test
@@ -316,9 +329,11 @@ schemas:
316
329
  type:
317
330
  _class: Expressir::Model::Expressions::SimpleReference
318
331
  id: attribute_entity
332
+ base_path: syntax_schema.attribute_entity
319
333
  expression:
320
334
  _class: Expressir::Model::Expressions::SimpleReference
321
335
  id: test
336
+ base_path: syntax_schema.inverse_attribute_entity.test
322
337
  - _class: Expressir::Model::Entity
323
338
  id: inverse_attribute_entity_entity
324
339
  attributes:
@@ -328,6 +343,7 @@ schemas:
328
343
  type:
329
344
  _class: Expressir::Model::Expressions::SimpleReference
330
345
  id: attribute_entity
346
+ base_path: syntax_schema.attribute_entity
331
347
  expression:
332
348
  _class: Expressir::Model::Expressions::AttributeReference
333
349
  ref:
@@ -347,9 +363,11 @@ schemas:
347
363
  base_type:
348
364
  _class: Expressir::Model::Expressions::SimpleReference
349
365
  id: attribute_entity
366
+ base_path: syntax_schema.attribute_entity
350
367
  expression:
351
368
  _class: Expressir::Model::Expressions::SimpleReference
352
369
  id: test
370
+ base_path: syntax_schema.inverse_attribute_set_entity.test
353
371
  - _class: Expressir::Model::Entity
354
372
  id: inverse_attribute_set_bound_entity
355
373
  attributes:
@@ -367,9 +385,11 @@ schemas:
367
385
  base_type:
368
386
  _class: Expressir::Model::Expressions::SimpleReference
369
387
  id: attribute_entity
388
+ base_path: syntax_schema.attribute_entity
370
389
  expression:
371
390
  _class: Expressir::Model::Expressions::SimpleReference
372
391
  id: test
392
+ base_path: syntax_schema.inverse_attribute_set_bound_entity.test
373
393
  - _class: Expressir::Model::Entity
374
394
  id: inverse_attribute_bag_entity
375
395
  attributes:
@@ -381,9 +401,11 @@ schemas:
381
401
  base_type:
382
402
  _class: Expressir::Model::Expressions::SimpleReference
383
403
  id: attribute_entity
404
+ base_path: syntax_schema.attribute_entity
384
405
  expression:
385
406
  _class: Expressir::Model::Expressions::SimpleReference
386
407
  id: test
408
+ base_path: syntax_schema.inverse_attribute_bag_entity.test
387
409
  - _class: Expressir::Model::Entity
388
410
  id: inverse_attribute_bag_bound_entity
389
411
  attributes:
@@ -401,14 +423,17 @@ schemas:
401
423
  base_type:
402
424
  _class: Expressir::Model::Expressions::SimpleReference
403
425
  id: attribute_entity
426
+ base_path: syntax_schema.attribute_entity
404
427
  expression:
405
428
  _class: Expressir::Model::Expressions::SimpleReference
406
429
  id: test
430
+ base_path: syntax_schema.inverse_attribute_bag_bound_entity.test
407
431
  - _class: Expressir::Model::Entity
408
432
  id: inverse_attribute_redeclared_entity
409
433
  subtype_of:
410
434
  - _class: Expressir::Model::Expressions::SimpleReference
411
435
  id: attribute_entity
436
+ base_path: syntax_schema.attribute_entity
412
437
  attributes:
413
438
  - _class: Expressir::Model::Attribute
414
439
  kind: :INVERSE
@@ -422,12 +447,14 @@ schemas:
422
447
  entity:
423
448
  _class: Expressir::Model::Expressions::SimpleReference
424
449
  id: attribute_entity
450
+ base_path: syntax_schema.attribute_entity
425
451
  attribute:
426
452
  _class: Expressir::Model::Expressions::SimpleReference
427
453
  id: test
428
454
  type:
429
455
  _class: Expressir::Model::Expressions::SimpleReference
430
456
  id: attribute_entity
457
+ base_path: syntax_schema.attribute_entity
431
458
  expression:
432
459
  _class: Expressir::Model::Expressions::SimpleReference
433
460
  id: test
@@ -436,6 +463,7 @@ schemas:
436
463
  subtype_of:
437
464
  - _class: Expressir::Model::Expressions::SimpleReference
438
465
  id: attribute_entity
466
+ base_path: syntax_schema.attribute_entity
439
467
  attributes:
440
468
  - _class: Expressir::Model::Attribute
441
469
  id: test2
@@ -450,12 +478,14 @@ schemas:
450
478
  entity:
451
479
  _class: Expressir::Model::Expressions::SimpleReference
452
480
  id: attribute_entity
481
+ base_path: syntax_schema.attribute_entity
453
482
  attribute:
454
483
  _class: Expressir::Model::Expressions::SimpleReference
455
484
  id: test
456
485
  type:
457
486
  _class: Expressir::Model::Expressions::SimpleReference
458
487
  id: attribute_entity
488
+ base_path: syntax_schema.attribute_entity
459
489
  expression:
460
490
  _class: Expressir::Model::Expressions::SimpleReference
461
491
  id: test
@@ -472,6 +502,7 @@ schemas:
472
502
  attributes:
473
503
  - _class: Expressir::Model::Expressions::SimpleReference
474
504
  id: test
505
+ base_path: syntax_schema.unique_entity.test
475
506
  - _class: Expressir::Model::Entity
476
507
  id: unique_label_entity
477
508
  attributes:
@@ -486,11 +517,13 @@ schemas:
486
517
  attributes:
487
518
  - _class: Expressir::Model::Expressions::SimpleReference
488
519
  id: test
520
+ base_path: syntax_schema.unique_label_entity.test
489
521
  - _class: Expressir::Model::Entity
490
522
  id: unique_redeclared_entity
491
523
  subtype_of:
492
524
  - _class: Expressir::Model::Expressions::SimpleReference
493
525
  id: attribute_entity
526
+ base_path: syntax_schema.attribute_entity
494
527
  unique:
495
528
  - _class: Expressir::Model::Unique
496
529
  attributes:
@@ -503,6 +536,7 @@ schemas:
503
536
  entity:
504
537
  _class: Expressir::Model::Expressions::SimpleReference
505
538
  id: attribute_entity
539
+ base_path: syntax_schema.attribute_entity
506
540
  attribute:
507
541
  _class: Expressir::Model::Expressions::SimpleReference
508
542
  id: test
@@ -511,6 +545,7 @@ schemas:
511
545
  subtype_of:
512
546
  - _class: Expressir::Model::Expressions::SimpleReference
513
547
  id: attribute_entity
548
+ base_path: syntax_schema.attribute_entity
514
549
  unique:
515
550
  - _class: Expressir::Model::Unique
516
551
  id: UR1
@@ -524,6 +559,7 @@ schemas:
524
559
  entity:
525
560
  _class: Expressir::Model::Expressions::SimpleReference
526
561
  id: attribute_entity
562
+ base_path: syntax_schema.attribute_entity
527
563
  attribute:
528
564
  _class: Expressir::Model::Expressions::SimpleReference
529
565
  id: test
@@ -548,17 +584,20 @@ schemas:
548
584
  applies_to:
549
585
  _class: Expressir::Model::Expressions::SimpleReference
550
586
  id: empty_entity
587
+ base_path: syntax_schema.empty_entity
551
588
  - _class: Expressir::Model::SubtypeConstraint
552
589
  id: abstract_supertype_subtype_constraint
553
590
  applies_to:
554
591
  _class: Expressir::Model::Expressions::SimpleReference
555
592
  id: empty_entity
593
+ base_path: syntax_schema.empty_entity
556
594
  abstract: true
557
595
  - _class: Expressir::Model::SubtypeConstraint
558
596
  id: total_over_subtype_constraint
559
597
  applies_to:
560
598
  _class: Expressir::Model::Expressions::SimpleReference
561
599
  id: empty_entity
600
+ base_path: syntax_schema.empty_entity
562
601
  total_over:
563
602
  - _class: Expressir::Model::Expressions::SimpleReference
564
603
  id: a
@@ -567,6 +606,7 @@ schemas:
567
606
  applies_to:
568
607
  _class: Expressir::Model::Expressions::SimpleReference
569
608
  id: empty_entity
609
+ base_path: syntax_schema.empty_entity
570
610
  supertype_expression:
571
611
  _class: Expressir::Model::Expressions::SimpleReference
572
612
  id: a
@@ -575,6 +615,7 @@ schemas:
575
615
  applies_to:
576
616
  _class: Expressir::Model::Expressions::SimpleReference
577
617
  id: empty_entity
618
+ base_path: syntax_schema.empty_entity
578
619
  supertype_expression:
579
620
  _class: Expressir::Model::Expressions::BinaryExpression
580
621
  operator: :ANDOR
@@ -589,6 +630,7 @@ schemas:
589
630
  applies_to:
590
631
  _class: Expressir::Model::Expressions::SimpleReference
591
632
  id: empty_entity
633
+ base_path: syntax_schema.empty_entity
592
634
  supertype_expression:
593
635
  _class: Expressir::Model::Expressions::BinaryExpression
594
636
  operator: :AND
@@ -603,6 +645,7 @@ schemas:
603
645
  applies_to:
604
646
  _class: Expressir::Model::Expressions::SimpleReference
605
647
  id: empty_entity
648
+ base_path: syntax_schema.empty_entity
606
649
  supertype_expression:
607
650
  _class: Expressir::Model::Expressions::BinaryExpression
608
651
  operator: :ANDOR
@@ -623,6 +666,7 @@ schemas:
623
666
  applies_to:
624
667
  _class: Expressir::Model::Expressions::SimpleReference
625
668
  id: empty_entity
669
+ base_path: syntax_schema.empty_entity
626
670
  supertype_expression:
627
671
  _class: Expressir::Model::Expressions::BinaryExpression
628
672
  operator: :ANDOR
@@ -643,6 +687,7 @@ schemas:
643
687
  applies_to:
644
688
  _class: Expressir::Model::Expressions::SimpleReference
645
689
  id: empty_entity
690
+ base_path: syntax_schema.empty_entity
646
691
  supertype_expression:
647
692
  _class: Expressir::Model::Expressions::BinaryExpression
648
693
  operator: :AND
@@ -663,6 +708,7 @@ schemas:
663
708
  applies_to:
664
709
  _class: Expressir::Model::Expressions::SimpleReference
665
710
  id: empty_entity
711
+ base_path: syntax_schema.empty_entity
666
712
  supertype_expression:
667
713
  _class: Expressir::Model::Expressions::BinaryExpression
668
714
  operator: :AND
@@ -683,6 +729,7 @@ schemas:
683
729
  applies_to:
684
730
  _class: Expressir::Model::Expressions::SimpleReference
685
731
  id: empty_entity
732
+ base_path: syntax_schema.empty_entity
686
733
  supertype_expression:
687
734
  _class: Expressir::Model::Expressions::Call
688
735
  ref:
@@ -698,6 +745,7 @@ schemas:
698
745
  applies_to:
699
746
  _class: Expressir::Model::Expressions::SimpleReference
700
747
  id: empty_entity
748
+ base_path: syntax_schema.empty_entity
701
749
  supertype_expression:
702
750
  _class: Expressir::Model::Expressions::BinaryExpression
703
751
  operator: :AND
@@ -719,6 +767,7 @@ schemas:
719
767
  applies_to:
720
768
  _class: Expressir::Model::Expressions::SimpleReference
721
769
  id: empty_entity
770
+ base_path: syntax_schema.empty_entity
722
771
  supertype_expression:
723
772
  _class: Expressir::Model::Expressions::BinaryExpression
724
773
  operator: :ANDOR
@@ -740,6 +789,7 @@ schemas:
740
789
  applies_to:
741
790
  _class: Expressir::Model::Expressions::SimpleReference
742
791
  id: empty_entity
792
+ base_path: syntax_schema.empty_entity
743
793
  supertype_expression:
744
794
  _class: Expressir::Model::Expressions::BinaryExpression
745
795
  operator: :AND
@@ -761,6 +811,7 @@ schemas:
761
811
  applies_to:
762
812
  _class: Expressir::Model::Expressions::SimpleReference
763
813
  id: empty_entity
814
+ base_path: syntax_schema.empty_entity
764
815
  supertype_expression:
765
816
  _class: Expressir::Model::Expressions::BinaryExpression
766
817
  operator: :ANDOR
@@ -782,6 +833,7 @@ schemas:
782
833
  applies_to:
783
834
  _class: Expressir::Model::Expressions::SimpleReference
784
835
  id: empty_entity
836
+ base_path: syntax_schema.empty_entity
785
837
  supertype_expression:
786
838
  _class: Expressir::Model::Expressions::BinaryExpression
787
839
  operator: :AND
@@ -810,6 +862,7 @@ schemas:
810
862
  applies_to:
811
863
  _class: Expressir::Model::Expressions::SimpleReference
812
864
  id: empty_entity
865
+ base_path: syntax_schema.empty_entity
813
866
  supertype_expression:
814
867
  _class: Expressir::Model::Expressions::BinaryExpression
815
868
  operator: :ANDOR
@@ -1030,6 +1083,7 @@ schemas:
1030
1083
  applies_to:
1031
1084
  - _class: Expressir::Model::Expressions::SimpleReference
1032
1085
  id: empty_entity
1086
+ base_path: syntax_schema.empty_entity
1033
1087
  where:
1034
1088
  - _class: Expressir::Model::Where
1035
1089
  expression:
@@ -1040,6 +1094,7 @@ schemas:
1040
1094
  applies_to:
1041
1095
  - _class: Expressir::Model::Expressions::SimpleReference
1042
1096
  id: empty_entity
1097
+ base_path: syntax_schema.empty_entity
1043
1098
  types:
1044
1099
  - _class: Expressir::Model::Type
1045
1100
  id: test
@@ -1055,6 +1110,7 @@ schemas:
1055
1110
  applies_to:
1056
1111
  - _class: Expressir::Model::Expressions::SimpleReference
1057
1112
  id: empty_entity
1113
+ base_path: syntax_schema.empty_entity
1058
1114
  constants:
1059
1115
  - _class: Expressir::Model::Constant
1060
1116
  id: test
@@ -1073,6 +1129,7 @@ schemas:
1073
1129
  applies_to:
1074
1130
  - _class: Expressir::Model::Expressions::SimpleReference
1075
1131
  id: empty_entity
1132
+ base_path: syntax_schema.empty_entity
1076
1133
  constants:
1077
1134
  - _class: Expressir::Model::Constant
1078
1135
  id: test
@@ -1098,6 +1155,7 @@ schemas:
1098
1155
  applies_to:
1099
1156
  - _class: Expressir::Model::Expressions::SimpleReference
1100
1157
  id: empty_entity
1158
+ base_path: syntax_schema.empty_entity
1101
1159
  variables:
1102
1160
  - _class: Expressir::Model::Variable
1103
1161
  id: test
@@ -1113,6 +1171,7 @@ schemas:
1113
1171
  applies_to:
1114
1172
  - _class: Expressir::Model::Expressions::SimpleReference
1115
1173
  id: empty_entity
1174
+ base_path: syntax_schema.empty_entity
1116
1175
  variables:
1117
1176
  - _class: Expressir::Model::Variable
1118
1177
  id: test
@@ -1132,6 +1191,7 @@ schemas:
1132
1191
  applies_to:
1133
1192
  - _class: Expressir::Model::Expressions::SimpleReference
1134
1193
  id: empty_entity
1194
+ base_path: syntax_schema.empty_entity
1135
1195
  variables:
1136
1196
  - _class: Expressir::Model::Variable
1137
1197
  id: test
@@ -1151,6 +1211,7 @@ schemas:
1151
1211
  applies_to:
1152
1212
  - _class: Expressir::Model::Expressions::SimpleReference
1153
1213
  id: empty_entity
1214
+ base_path: syntax_schema.empty_entity
1154
1215
  variables:
1155
1216
  - _class: Expressir::Model::Variable
1156
1217
  id: test
@@ -1169,6 +1230,7 @@ schemas:
1169
1230
  applies_to:
1170
1231
  - _class: Expressir::Model::Expressions::SimpleReference
1171
1232
  id: empty_entity
1233
+ base_path: syntax_schema.empty_entity
1172
1234
  variables:
1173
1235
  - _class: Expressir::Model::Variable
1174
1236
  id: test
@@ -1194,6 +1256,7 @@ schemas:
1194
1256
  applies_to:
1195
1257
  - _class: Expressir::Model::Expressions::SimpleReference
1196
1258
  id: empty_entity
1259
+ base_path: syntax_schema.empty_entity
1197
1260
  variables:
1198
1261
  - _class: Expressir::Model::Variable
1199
1262
  id: test
@@ -1219,6 +1282,7 @@ schemas:
1219
1282
  applies_to:
1220
1283
  - _class: Expressir::Model::Expressions::SimpleReference
1221
1284
  id: empty_entity
1285
+ base_path: syntax_schema.empty_entity
1222
1286
  statements:
1223
1287
  - _class: Expressir::Model::Statements::Null
1224
1288
  where:
@@ -1231,6 +1295,7 @@ schemas:
1231
1295
  applies_to:
1232
1296
  - _class: Expressir::Model::Expressions::SimpleReference
1233
1297
  id: empty_entity
1298
+ base_path: syntax_schema.empty_entity
1234
1299
  where:
1235
1300
  - _class: Expressir::Model::Where
1236
1301
  id: WR1
@@ -1728,6 +1793,7 @@ schemas:
1728
1793
  ref:
1729
1794
  _class: Expressir::Model::Expressions::SimpleReference
1730
1795
  id: empty_procedure
1796
+ base_path: syntax_schema.empty_procedure
1731
1797
  - _class: Expressir::Model::Procedure
1732
1798
  id: call_parameter_statement
1733
1799
  statements:
@@ -1735,6 +1801,7 @@ schemas:
1735
1801
  ref:
1736
1802
  _class: Expressir::Model::Expressions::SimpleReference
1737
1803
  id: empty_procedure
1804
+ base_path: syntax_schema.empty_procedure
1738
1805
  parameters:
1739
1806
  - _class: Expressir::Model::Literals::Logical
1740
1807
  value: :TRUE
@@ -1745,6 +1812,7 @@ schemas:
1745
1812
  ref:
1746
1813
  _class: Expressir::Model::Expressions::SimpleReference
1747
1814
  id: empty_procedure
1815
+ base_path: syntax_schema.empty_procedure
1748
1816
  parameters:
1749
1817
  - _class: Expressir::Model::Literals::Logical
1750
1818
  value: :TRUE
@@ -2054,6 +2122,7 @@ schemas:
2054
2122
  items:
2055
2123
  - _class: Expressir::Model::Expressions::SimpleReference
2056
2124
  id: empty_type
2125
+ base_path: syntax_schema.empty_type
2057
2126
  - _class: Expressir::Model::Type
2058
2127
  id: select_list_multiple_type
2059
2128
  type:
@@ -2061,8 +2130,10 @@ schemas:
2061
2130
  items:
2062
2131
  - _class: Expressir::Model::Expressions::SimpleReference
2063
2132
  id: empty_type
2133
+ base_path: syntax_schema.empty_type
2064
2134
  - _class: Expressir::Model::Expressions::SimpleReference
2065
2135
  id: empty_type
2136
+ base_path: syntax_schema.empty_type
2066
2137
  - _class: Expressir::Model::Type
2067
2138
  id: select_extension_type_ref_type
2068
2139
  type:
@@ -2070,6 +2141,7 @@ schemas:
2070
2141
  extension_type:
2071
2142
  _class: Expressir::Model::Expressions::SimpleReference
2072
2143
  id: select_type
2144
+ base_path: syntax_schema.types.select_type
2073
2145
  - _class: Expressir::Model::Type
2074
2146
  id: select_extension_type_ref_list_type
2075
2147
  type:
@@ -2077,9 +2149,11 @@ schemas:
2077
2149
  extension_type:
2078
2150
  _class: Expressir::Model::Expressions::SimpleReference
2079
2151
  id: select_type
2152
+ base_path: syntax_schema.types.select_type
2080
2153
  extension_items:
2081
2154
  - _class: Expressir::Model::Expressions::SimpleReference
2082
2155
  id: empty_type
2156
+ base_path: syntax_schema.empty_type
2083
2157
  - _class: Expressir::Model::Type
2084
2158
  id: select_extension_type_ref_list_multiple_type
2085
2159
  type:
@@ -2087,11 +2161,14 @@ schemas:
2087
2161
  extension_type:
2088
2162
  _class: Expressir::Model::Expressions::SimpleReference
2089
2163
  id: select_type
2164
+ base_path: syntax_schema.types.select_type
2090
2165
  extension_items:
2091
2166
  - _class: Expressir::Model::Expressions::SimpleReference
2092
2167
  id: empty_type
2168
+ base_path: syntax_schema.empty_type
2093
2169
  - _class: Expressir::Model::Expressions::SimpleReference
2094
2170
  id: empty_type
2171
+ base_path: syntax_schema.empty_type
2095
2172
  - _class: Expressir::Model::Type
2096
2173
  id: enumeration_type
2097
2174
  type:
@@ -2124,6 +2201,7 @@ schemas:
2124
2201
  extension_type:
2125
2202
  _class: Expressir::Model::Expressions::SimpleReference
2126
2203
  id: enumeration_type
2204
+ base_path: syntax_schema.types.enumeration_type
2127
2205
  - _class: Expressir::Model::Type
2128
2206
  id: enumeration_extension_type_ref_list_type
2129
2207
  type:
@@ -2131,6 +2209,7 @@ schemas:
2131
2209
  extension_type:
2132
2210
  _class: Expressir::Model::Expressions::SimpleReference
2133
2211
  id: enumeration_type
2212
+ base_path: syntax_schema.types.enumeration_type
2134
2213
  extension_items:
2135
2214
  - _class: Expressir::Model::EnumerationItem
2136
2215
  id: test
@@ -2141,6 +2220,7 @@ schemas:
2141
2220
  extension_type:
2142
2221
  _class: Expressir::Model::Expressions::SimpleReference
2143
2222
  id: enumeration_type
2223
+ base_path: syntax_schema.types.enumeration_type
2144
2224
  extension_items:
2145
2225
  - _class: Expressir::Model::EnumerationItem
2146
2226
  id: test
@@ -3295,6 +3375,7 @@ schemas:
3295
3375
  ref:
3296
3376
  _class: Expressir::Model::Expressions::SimpleReference
3297
3377
  id: parameter_function
3378
+ base_path: syntax_schema.parameter_function
3298
3379
  parameters:
3299
3380
  - _class: Expressir::Model::Literals::Logical
3300
3381
  value: :TRUE