-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathobjects
1204 lines (1204 loc) · 53 KB
/
objects
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
Item(<Composed>) - null
.ItemSavedValuesRelation(<Relation>) - null
.ItemDocrRelation(<Relation>) - null
.AbstractOrder2AbstractOrderEntry(<Relation>) - null
.MediaContainer2MediaRel(<Relation>) - null
.MediaContext2MediaFormatMappingRel(<Relation>) - null
.Media2DerivedMediaRel(<Relation>) - null
.Country2RegionRelation(<Relation>) - null
.Principal2SearchRestrictionRelation(<Relation>) - null
.User2ContactInfos(<Relation>) - null
.User2Carts(<Relation>) - null
.User2Quotes(<Relation>) - null
.User2Orders(<Relation>) - null
.User2Addresses(<Relation>) - null
.User2PaymentInfos(<Relation>) - null
.SavedValueEntriesRelation(<Relation>) - null
.ExtensibleItem(<Composed>) - null
..LocalizableItem(<Composed>) - null
...GenericItem(<Composed>) - null
....AbstractOrder(<Composed>) - null
.....Cart(<Composed>) - null
......InMemoryCart(<Composed>) - null
.......MultiAddressInMemoryCart(<Composed>) - null
.....Quote(<Composed>) - null
.....Order(<Composed>) - null
......ReturnOrder(<Composed>) - null
.......ReplacementOrder(<Composed>) - null
....AbstractOrderEntry(<Composed>) - null
.....OrderEntry(<Composed>) - null
......ReturnOrderEntry(<Composed>) - null
.......ReplacementOrderEntry(<Composed>) - null
.....CartEntry(<Composed>) - null
......InMemoryCartEntry(<Composed>) - null
.....QuoteEntry(<Composed>) - null
....MediaContainer(<Composed>) - true
....MediaContext(<Composed>) - null
....MediaFormatMapping(<Composed>) - null
....Principal(<Composed>) - null
.....User(<Composed>) - null
......Employee(<Composed>) - null
.......TestEmployee(<Composed>) - null
......Customer(<Composed>) - null
.....PrincipalGroup(<Composed>) - null
......UserGroup(<Composed>) - null
.......TestUserGroup(<Composed>) - null
.......Company(<Composed>) - null
........OrgUnit(<Composed>) - null
.......BackofficeRole(<Composed>) - null
.......CustomerList(<Composed>) - null
.......StoreEmployeeGroup(<Composed>) - null
.......CsAgentGroup(<Composed>) - null
....AbstractContactInfo(<Composed>) - null
.....PhoneContactInfo(<Composed>) - null
....Address(<Composed>) - null
....PaymentInfo(<Composed>) - null
.....AdvancePaymentInfo(<Composed>) - null
.....CreditCardPaymentInfo(<Composed>) - null
.....DebitPaymentInfo(<Composed>) - null
.....InvoicePaymentInfo(<Composed>) - null
....SavedValues(<Composed>) - null
....SavedValueEntry(<Composed>) - null
....UserRight(<Composed>) - null
....PointOfService(<Composed>) - null
....UserProfile(<Composed>) - null
....Title(<Composed>) - null
....AbstractUserAudit(<Composed>) - null
.....UserPasswordChangeAudit(<Composed>) - null
.....BruteForceLoginDisabledAudit(<Composed>) - null
.....BruteForceOAuthDisabledAudit(<Composed>) - null
....DeliveryMode(<Composed>) - null
.....ZoneDeliveryMode(<Composed>) - null
.....PickUpDeliveryMode(<Composed>) - null
....PaymentMode(<Composed>) - null
.....StandardPaymentMode(<Composed>) - null
....BaseSite(<Composed>) - null
.....CMSSite(<Composed>) - null
....BaseStore(<Composed>) - null
....Product(<Composed>) - true
.....VariantProduct(Variant) - true
......GenericVariantProduct(Variant) - true
......ApparelStyleVariantProduct(Variant) - true
.......ApparelSizeVariantProduct(Variant) - true
......ElectronicsColorVariantProduct(Variant) - true
.....ApparelProduct(<Composed>) - true
....Unit(<Composed>) - null
....Vendor(<Composed>) - null
....Discount(<Composed>) - null
.....Voucher(<Composed>) - null
......SerialVoucher(<Composed>) - null
......PromotionVoucher(<Composed>) - null
....Tax(<Composed>) - null
....C2LItem(<Composed>) - null
.....Country(<Composed>) - null
.....Region(<Composed>) - null
.....Language(<Composed>) - null
.....Currency(<Composed>) - null
....AbstractMedia(<Composed>) - null
.....Media(<Composed>) - true
......Formatter(<Composed>) - true
.......ItemFormatter(<Composed>) - true
........CustomOrder2XML(<Composed>) - true
........VelocityFormatter(<Composed>) - true
.......MediaFormatter(<Composed>) - true
........FOPFormatter(<Composed>) - true
........XMLTransformFormatter(<Composed>) - true
......Document(<Composed>) - true
......JobMedia(<Composed>) - true
......LogFile(<Composed>) - true
......ImpExMedia(<Composed>) - true
.......HeaderLibrary(<Composed>) - true
.......ImpExExportMedia(<Composed>) - true
......CatalogUnawareMedia(<Composed>) - false
.......AuditReportData(<Composed>) - false
.......CockpitUIConfigurationMedia(<Composed>) - false
........CockpitUIScriptConfigMedia(<Composed>) - false
......CatalogVersionSyncScheduleMedia(<Composed>) - true
......BarcodeMedia(<Composed>) - true
......JasperMedia(<Composed>) - true
.......CompiledJasperMedia(<Composed>) - true
......EmailAttachment(<Composed>) - true
.....DerivedMedia(<Composed>) - null
....MediaFormat(<Composed>) - null
....MediaFolder(<Composed>) - null
....Catalog(<Composed>) - null
.....ClassificationSystem(<Composed>) - null
.....ContentCatalog(<Composed>) - null
....CatalogVersion(<Composed>) - null
.....ClassificationSystemVersion(<Composed>) - null
....Format(<Composed>) - null
....CronJob(<Composed>) - null
.....CompositeCronJob(<Composed>) - null
.....MediaProcessCronJob(<Composed>) - null
......URLCronJob(<Composed>) - null
......FlexibleSearchCronJob(<Composed>) - null
.....RemoveItemsCronJob(<Composed>) - null
.....MoveMediaCronJob(<Composed>) - null
.....MediaFolderStructureMigrationCronJob(<Composed>) - null
.....CleanupDynamicProcessDefinitionsCronJob(<Composed>) - null
.....CleanUpCronJob(<Composed>) - null
.....ImpExExportCronJob(<Composed>) - null
.....ImpExImportCronJob(<Composed>) - null
.....CompareCatalogVersionsCronJob(<Composed>) - null
.....RemoveCatalogVersionCronJob(<Composed>) - null
.....SyncItemCronJob(<Composed>) - null
......CatalogVersionSyncCronJob(<Composed>) - null
.....Workflow(<Composed>) - null
.....CreateAuditReportCronJob(<Composed>) - null
.....CartToOrderCronJob(<Composed>) - null
.....OrderTemplateToOrderCronJob(<Composed>) - null
.....OrderScheduleCronJob(<Composed>) - null
.....GeocodeAddressesCronJob(<Composed>) - null
.....ExcelImportCronJob(<Composed>) - null
.....RemoveOrphanedFilesCronJob(<Composed>) - null
.....SolrIndexerCronJob(<Composed>) - null
......SolrIndexerHotUpdateCronJob(<Composed>) - null
......SolrExtIndexerCronJob(<Composed>) - null
......BackofficeSolrIndexerCronJob(<Composed>) - null
.....SolrIndexOptimizationCronJob(<Composed>) - null
.....SolrQueryStatisticsCollectorCronJob(<Composed>) - null
.....SolrUpdateSynonymsCronJob(<Composed>) - null
.....SolrUpdateStopWordsCronJob(<Composed>) - null
.....CxPersonalizationProcessCleanupCronJob(<Composed>) - null
.....CxResultsCleaningCronJob(<Composed>) - null
.....SessionEventsRemovalCronJob(<Composed>) - null
.....CSTicketStagnationCronJob(<Composed>) - null
.....ExportDataCronJob(<Composed>) - null
.....CartRemovalCronJob(<Composed>) - null
.....UncollectedOrdersCronJob(<Composed>) - null
.....SiteMapMediaCronJob(<Composed>) - null
.....RuleEngineCronJob(<Composed>) - null
.....OldPaymentSubscriptionResultRemovalCronJob(<Composed>) - null
....DeeplinkUrl(<Composed>) - null
....EmailMessage(<Composed>) - null
....ProductOrderLimit(<Composed>) - null
....GenericTestItem(<Composed>) - null
....SavedQuery(<Composed>) - null
.....AdvancedSavedQuery(<Composed>) - null
....IndexTestItem(<Composed>) - null
....AbstractDynamicContent(<Composed>) - null
.....AuditReportConfig(<Composed>) - null
.....Script(<Composed>) - null
.....DynamicProcessDefinition(<Composed>) - null
....BruteForceLoginAttempts(<Composed>) - null
....SystemSetupAudit(<Composed>) - null
....StoredHttpSession(<Composed>) - null
....CorsConfigurationProperty(<Composed>) - null
....StandardPaymentModeValue(<Composed>) - null
....ZoneDeliveryModeValue(<Composed>) - null
....Zone(<Composed>) - null
....JaloVelocityRenderer(<Composed>) - null
....JaloTranslatorConfiguration(<Composed>) - null
....RenderersProperty(<Composed>) - null
....ParserProperty(<Composed>) - null
....RendererTemplate(<Composed>) - null
.....AuditReportTemplate(<Composed>) - null
....Job(<Composed>) - null
.....BatchJob(<Composed>) - null
.....CompositeJob(<Composed>) - null
.....TypeSystemExportJob(<Composed>) - null
.....RemoveItemsJob(<Composed>) - null
.....MoveMediaJob(<Composed>) - null
.....ServicelayerJob(<Composed>) - null
......ScriptingJob(<Composed>) - null
......ProcessTaskLogMaintenanceJob(<Composed>) - null
......MaintenanceCleanupJob(<Composed>) - null
.......DynamicMaintenanceCleanupJob(<Composed>) - null
......RetentionJob(<Composed>) - null
......CreateAuditReportJob(<Composed>) - null
......ExcelImportJob(<Composed>) - null
......RuleEngineJob(<Composed>) - null
.....ImpExImportJob(<Composed>) - null
.....ImpExExportJob(<Composed>) - null
.....CompareCatalogVersionsJob(<Composed>) - null
.....RemoveCatalogVersionJob(<Composed>) - null
.....SyncItemJob(<Composed>) - null
......CatalogVersionSyncJob(<Composed>) - null
.....WorkflowTemplate(<Composed>) - null
.....RemoveOrphanedFilesJob(<Composed>) - null
....AbstractRetentionRule(<Composed>) - null
.....AfterRetentionCleanupRule(<Composed>) - null
.....FlexibleSearchRetentionRule(<Composed>) - null
....CronJobHistory(<Composed>) - null
.....CatalogVersionSyncCronJobHistory(<Composed>) - null
....Step(<Composed>) - null
.....MediaProcessorStep(<Composed>) - null
......GenericCSVImportStep(<Composed>) - null
......CSVExportStep(<Composed>) - null
......GetURLStep(<Composed>) - null
....Export(<Composed>) - null
.....Report(<Composed>) - null
....SolrFacetSearchConfig(<Composed>) - null
....CompositeEntry(<Composed>) - null
....Trigger(<Composed>) - null
....ChangeDescriptor(<Composed>) - null
.....ItemSyncDescriptor(<Composed>) - null
....JobLog(<Composed>) - null
....JobSearchRestriction(<Composed>) - null
....Task(<Composed>) - null
.....ProcessTask(<Composed>) - null
.....ScriptingTask(<Composed>) - null
.....TriggerTask(<Composed>) - null
.....DistributedProcessTransitionTask(<Composed>) - null
.....DistributedProcessWorkerTask(<Composed>) - null
....BusinessProcess(<Composed>) - null
.....ConsignmentProcess(<Composed>) - null
.....OrderProcess(<Composed>) - null
......OrderModificationProcess(<Composed>) - null
.....ReturnProcess(<Composed>) - null
.....StoreFrontProcess(<Composed>) - null
......StoreFrontCustomerProcess(<Composed>) - null
.......ForgottenPasswordProcess(<Composed>) - null
.......SavedCartFileUploadProcess(<Composed>) - null
.....QuoteProcess(<Composed>) - null
.....CxPersonalizationProcess(<Composed>) - null
....DistributedProcess(<Composed>) - null
.....SimpleDistributedProcess(<Composed>) - null
......SolrIndexerDistributedProcess(<Composed>) - null
.....DistributedImportProcess(<Composed>) - null
....Batch(<Composed>) - null
.....SimpleBatch(<Composed>) - null
......SolrIndexerBatch(<Composed>) - null
.....ImportBatch(<Composed>) - null
....TaskCondition(<Composed>) - null
....AbstractAction(<Composed>) - null
.....SimpleAction(<Composed>) - null
.....CxAbstractAction(<Composed>) - true
......CxCmsAction(<Composed>) - true
......CxSearchProfileAction(<Composed>) - true
......CxPromotionAction(<Composed>) - true
....CxVariation(<Composed>) - true
....BusinessProcessParameter(<Composed>) - null
....Consignment(<Composed>) - null
....OrderModificationRecordEntry(<Composed>) - null
.....OrderCancelRecordEntry(<Composed>) - null
.....OrderReturnRecordEntry(<Composed>) - null
......OrderRefundRecordEntry(<Composed>) - null
......OrderReplacementRecordEntry(<Composed>) - null
....ReturnRequest(<Composed>) - null
....ProcessTaskLog(<Composed>) - null
....ImportBatchContent(<Composed>) - null
.....DistributedImportSplitErrorDump(<Composed>) - null
....ExternalImportKey(<Composed>) - null
....ImpexDocumentId(<Composed>) - null
....ConstraintGroup(<Composed>) - null
.....CoverageConstraintGroup(<Composed>) - null
....AbstractConstraint(<Composed>) - null
.....TypeConstraint(<Composed>) - null
......DynamicConstraint(<Composed>) - null
......XorNullReferenceConstraint(<Composed>) - null
.....AttributeConstraint(<Composed>) - null
......PatternConstraint(<Composed>) - null
......PastConstraint(<Composed>) - null
......FutureConstraint(<Composed>) - null
......DigitsConstraint(<Composed>) - null
......MinConstraint(<Composed>) - null
......MaxConstraint(<Composed>) - null
......DecimalMaxConstraint(<Composed>) - null
......HybrisDecimalMaxConstraint(<Composed>) - null
......DecimalMinConstraint(<Composed>) - null
......HybrisDecimalMinConstraint(<Composed>) - null
......NullConstraint(<Composed>) - null
......NotNullConstraint(<Composed>) - null
......AssertTrueConstraint(<Composed>) - null
......AssertFalseConstraint(<Composed>) - null
......SizeConstraint(<Composed>) - null
......NotEmptyConstraint(<Composed>) - null
......NotBlankConstraint(<Composed>) - null
......ObjectPatternConstraint(<Composed>) - null
....AbstractConfiguratorSetting(<Composed>) - true
.....TextFieldConfiguratorSetting(<Composed>) - true
....AbstractOrderEntryProductInfo(<Composed>) - null
.....TextFieldConfiguredProductInfo(<Composed>) - null
....Keyword(<Composed>) - true
.....ClassificationKeyword(<Composed>) - true
....Agreement(<Composed>) - null
....Category(<Composed>) - true
.....ConfigurationCategory(<Composed>) - true
.....ClassificationClass(<Composed>) - true
.....VariantCategory(<Composed>) - true
.....VariantValueCategory(<Composed>) - true
....ProductReference(<Composed>) - null
....CatalogVersionDifference(<Composed>) - null
.....ProductCatalogVersionDifference(<Composed>) - null
.....CategoryCatalogVersionDifference(<Composed>) - null
....PreviewTicket(<Composed>) - null
....SyncAttributeDescriptorConfig(<Composed>) - null
....ItemSyncTimestamp(<Composed>) - null
....ClassificationAttributeUnit(<Composed>) - true
....ClassAttributeAssignment(<Composed>) - true
....ClassificationAttribute(<Composed>) - true
....ClassificationAttributeValue(<Composed>) - true
....AttributeValueAssignment(<Composed>) - true
....ProductFeature(<Composed>) - null
....WherePart(<Composed>) - null
....AbstractAdvancedSavedQuerySearchParameter(<Composed>) - null
.....TypedAdvancedSavedQuerySearchParameter(<Composed>) - null
......ComposedTypeAdvancedSavedQuerySearchParameter(<Composed>) - null
.....SimpleAdvancedSavedQuerySearchParameter(<Composed>) - null
....PDTRow(<Composed>) - null
.....AbstractDiscountRow(<Composed>) - null
......DiscountRow(<Composed>) - true
......GlobalDiscountRow(<Composed>) - null
.....PriceRow(<Composed>) - true
.....TaxRow(<Composed>) - true
....AbstractWorkflowAction(<Composed>) - null
.....WorkflowActionTemplate(<Composed>) - null
......AutomatedWorkflowActionTemplate(<Composed>) - null
.....WorkflowAction(<Composed>) - null
....AbstractWorkflowDecision(<Composed>) - null
.....WorkflowDecision(<Composed>) - null
.....WorkflowDecisionTemplate(<Composed>) - null
....WorkflowActionComment(<Composed>) - null
....WorkflowItemAttachment(<Composed>) - null
....CommentAttachment(<Composed>) - null
....AbstractComment(<Composed>) - null
.....Comment(<Composed>) - null
......CsTicketEvent(<Composed>) - null
.......CsCustomerEvent(<Composed>) - null
........CsTicketResolutionEvent(<Composed>) - null
.....Reply(<Composed>) - null
....Component(<Composed>) - null
....CommentType(<Composed>) - null
....CsTicket(<Composed>) - null
....Domain(<Composed>) - null
....CommentUserSetting(<Composed>) - null
....OAuthClientDetails(<Composed>) - null
.....OpenIDClientDetails(<Composed>) - null
....OpenIDExternalScopes(<Composed>) - null
....OAuthAccessToken(<Composed>) - null
....OAuthRefreshToken(<Composed>) - null
....OAuthAuthorizationCode(<Composed>) - null
....VoucherInvalidation(<Composed>) - null
....Restriction(<Composed>) - null
.....ProductRestriction(<Composed>) - null
......ProductQuantityRestriction(<Composed>) - null
......ProductCategoryRestriction(<Composed>) - null
.....OrderRestriction(<Composed>) - null
.....DateRestriction(<Composed>) - null
.....UserRestriction(<Composed>) - null
.....NewCustomerRestriction(<Composed>) - null
.....RegularCustomerOrderQuantityRestriction(<Composed>) - null
.....RegularCustomerOrderTotalRestriction(<Composed>) - null
....PromotionResult(<Composed>) - null
.....CachedPromotionResult(<Composed>) - null
....AbstractPromotion(<Composed>) - null
.....ProductPromotion(<Composed>) - null
......ProductFixedPricePromotion(<Composed>) - null
......ProductPercentageDiscountPromotion(<Composed>) - null
......ProductBOGOFPromotion(<Composed>) - null
.......AcceleratorProductBOGOFPromotion(<Composed>) - null
......ProductMultiBuyPromotion(<Composed>) - null
.......AcceleratorProductMultiBuyPromotion(<Composed>) - null
......ProductSteppedMultiBuyPromotion(<Composed>) - null
......ProductBundlePromotion(<Composed>) - null
......ProductPerfectPartnerPromotion(<Composed>) - null
......ProductOneToOnePerfectPartnerPromotion(<Composed>) - null
......ProductPerfectPartnerBundlePromotion(<Composed>) - null
.....OrderPromotion(<Composed>) - null
......OrderThresholdPerfectPartnerPromotion(<Composed>) - null
......OrderThresholdDiscountPromotion(<Composed>) - null
......OrderThresholdFreeGiftPromotion(<Composed>) - null
......OrderThresholdFreeVoucherPromotion(<Composed>) - null
......OrderThresholdChangeDeliveryModePromotion(<Composed>) - null
.....RuleBasedPromotion(<Composed>) - null
....AbstractPromotionAction(<Composed>) - null
.....PromotionNullAction(<Composed>) - null
......CachedPromotionNullAction(<Composed>) - null
.....PromotionOrderAdjustTotalAction(<Composed>) - null
......CachedPromotionOrderAdjustTotalAction(<Composed>) - null
.....PromotionOrderEntryAdjustAction(<Composed>) - null
......CachedPromotionOrderEntryAdjustAction(<Composed>) - null
.....PromotionOrderAddFreeGiftAction(<Composed>) - null
......CachedPromotionOrderAddFreeGiftAction(<Composed>) - null
.....PromotionOrderChangeDeliveryModeAction(<Composed>) - null
......CachedPromotionOrderChangeDeliveryModeAction(<Composed>) - null
.....AbstractRuleBasedPromotionAction(<Composed>) - null
......RuleBasedOrderAdjustTotalAction(<Composed>) - null
......RuleBasedOrderEntryAdjustAction(<Composed>) - null
......RuleBasedOrderAddProductAction(<Composed>) - null
......RuleBasedOrderChangeDeliveryModeAction(<Composed>) - null
......RuleBasedPotentialPromotionMessageAction(<Composed>) - null
......RuleBasedAddCouponAction(<Composed>) - null
....AbstractRuleEngineRule(<Composed>) - null
.....DroolsRule(<Composed>) - null
....PromotionOrderEntryConsumed(<Composed>) - null
.....CachedPromotionOrderEntryConsumed(<Composed>) - null
....PromotionPriceRow(<Composed>) - null
....PromotionQuantityAndPricesRow(<Composed>) - null
....AbstractPromotionRestriction(<Composed>) - null
.....PromotionProductRestriction(<Composed>) - null
.....PromotionUserRestriction(<Composed>) - null
.....PromotionOrderRestriction(<Composed>) - null
....PromotionGroup(<Composed>) - null
....AbstractRule(<Composed>) - null
.....SourceRule(<Composed>) - null
......PromotionSourceRule(<Composed>) - null
....DroolsKIEBase(<Composed>) - null
....AbstractRulesModule(<Composed>) - null
.....DroolsKIEModule(<Composed>) - null
....AbstractRuleEngineContext(<Composed>) - null
.....DroolsRuleEngineContext(<Composed>) - null
....DroolsKIESession(<Composed>) - null
....CatalogVersionToRuleEngineContextMapping(<Composed>) - null
....FraudReport(<Composed>) - null
....FraudSymptomScoring(<Composed>) - null
....OrderHistoryEntry(<Composed>) - null
....Warehouse(<Composed>) - null
....ConsignmentEntry(<Composed>) - null
....StockLevel(<Composed>) - null
....StockLevelHistoryEntry(<Composed>) - null
....OpeningSchedule(<Composed>) - null
....OpeningDay(<Composed>) - null
.....SpecialOpeningDay(<Composed>) - null
.....WeekdayOpeningDay(<Composed>) - null
....DeeplinkUrlRule(<Composed>) - null
....OrderModificationRecord(<Composed>) - null
.....OrderCancelRecord(<Composed>) - null
.....OrderReturnRecord(<Composed>) - null
....OrderEntryModificationRecordEntry(<Composed>) - null
.....OrderEntryCancelRecordEntry(<Composed>) - null
.....OrderEntryReturnRecordEntry(<Composed>) - null
....OrderCancelConfig(<Composed>) - null
....ReturnEntry(<Composed>) - null
.....ReplacementEntry(<Composed>) - null
.....RefundEntry(<Composed>) - null
....CxConfig(<Composed>) - null
....SiteMapConfig(<Composed>) - null
....ProductTaxCode(<Composed>) - null
....Campaign(<Composed>) - null
....PaymentTransaction(<Composed>) - null
....PaymentTransactionEntry(<Composed>) - null
....CustomerReview(<Composed>) - null
....BackofficeSearchCondition(<Composed>) - null
....BackofficeSavedQuery(<Composed>) - null
....CockpitItemTemplate(<Composed>) - null
....ObjectCollectionElement(<Composed>) - null
.....ObjectCollectionItemReference(<Composed>) - null
....CockpitObjectAbstractCollection(<Composed>) - null
.....CockpitObjectCollection(<Composed>) - null
.....CockpitObjectSpecialCollection(<Composed>) - null
....CockpitFavoriteCategory(<Composed>) - null
....CockpitSavedQuery(<Composed>) - null
....CockpitSavedFacetValue(<Composed>) - null
....CockpitSavedSortCriterion(<Composed>) - null
....CockpitSavedParameterValue(<Composed>) - null
....CockpitUIComponentConfiguration(<Composed>) - null
....CockpitUIComponentAccessRight(<Composed>) - null
....WidgetPreferences(<Composed>) - null
.....DynamicWidgetPreferences(<Composed>) - null
......JasperWidgetPreferences(<Composed>) - null
....WidgetParameter(<Composed>) - null
....CommentMetadata(<Composed>) - null
....SolrSearchConfig(<Composed>) - null
....SolrIndexConfig(<Composed>) - null
....SolrServerConfig(<Composed>) - null
....SolrFacetSearchKeywordRedirect(<Composed>) - null
....SolrAbstractKeywordRedirect(<Composed>) - null
.....SolrURIRedirect(<Composed>) - null
.....SolrProductRedirect(<Composed>) - null
.....SolrCategoryRedirect(<Composed>) - null
.....SolrPageRedirect(<Composed>) - null
....SolrSynonymConfig(<Composed>) - null
....SolrStopWord(<Composed>) - null
....SolrValueRangeSet(<Composed>) - null
....SolrValueRange(<Composed>) - null
....SolrIndexedProperty(<Composed>) - null
....ComposedIndexedType(<Composed>) - null
....SolrIndexedType(<Composed>) - null
....SolrIndexerQuery(<Composed>) - null
....SolrIndexerQueryParameter(<Composed>) - null
....SolrEndpointUrl(<Composed>) - null
....SolrIndexedCoresRecord(<Composed>) - null
....SolrIndexOperationRecord(<Composed>) - null
....SolrQueryAggregatedStats(<Composed>) - null
....SolrIndex(<Composed>) - null
....SolrIndexOperation(<Composed>) - null
....SolrSearchQueryTemplate(<Composed>) - null
....SolrSearchQueryProperty(<Composed>) - null
....SolrSearchQuerySort(<Composed>) - null
....SolrSort(<Composed>) - null
....SolrSortField(<Composed>) - null
....StoreLocatorFeature(<Composed>) - null
....ConsentTemplate(<Composed>) - null
....Consent(<Composed>) - null
....CxCustomization(<Composed>) - true
....CxCustomizationsGroup(<Composed>) - true
....CxSegment(<Composed>) - null
....CxUserToSegment(<Composed>) - null
....CxAbstractTrigger(<Composed>) - true
.....CxSegmentTrigger(<Composed>) - true
.....CxExpressionTrigger(<Composed>) - true
.....CxDefaultTrigger(<Composed>) - true
....CxResults(<Composed>) - null
....CxUrlVoterConfig(<Composed>) - null
....SessionEvent(<Composed>) - null
.....SessionStartEvent(<Composed>) - null
.....SessionEndEvent(<Composed>) - null
....CsTicketEventEmailConfiguration(<Composed>) - null
....CsTicketChangeEventEntry(<Composed>) - null
.....CsTicketChangeEventStringEntry(<Composed>) - null
.....CsTicketChangeEventCsTicketCategoryEntry(<Composed>) - null
.....CsTicketChangeEventCsTicketPriorityEntry(<Composed>) - null
.....CsTicketChangeEventCsTicketStateEntry(<Composed>) - null
.....CsTicketChangeEventEmployeeEntry(<Composed>) - null
.....CsTicketChangeEventCsAgentGroupEntry(<Composed>) - null
....CsTicketEmail(<Composed>) - null
....ComponentTypeGroup(<Composed>) - null
....CMSItem(<Composed>) - true
.....AbstractPage(CMSPage) - true
......ContentPage(CMSPage) - true
......CategoryPage(CMSPage) - true
......ProductPage(CMSPage) - true
......CatalogPage(CMSPage) - true
......DocumentPage(CMSPage) - true
.......EmailPage(CMSPage) - true
.....ContentSlot(<Composed>) - true
.....AbstractCMSComponent(CMSComponent) - true
......AbstractCMSComponentContainer(CMSComponent) - true
.......ABTestCMSComponentContainer(CMSComponent) - true
.......CMSTabParagraphContainer(CMSComponent) - true
.......CxCmsComponentContainer(CMSComponent) - true
......SimpleCMSComponent(CMSComponent) - true
.......CMSParagraphComponent(CMSComponent) - true
........CMSTabParagraphComponent(CMSComponent) - true
........AssistedServiceComponent(CMSComponent) - true
.......CMSImageComponent(CMSComponent) - true
.......CMSLinkComponent(CMSComponent) - true
.......AbstractBannerComponent(CMSComponent) - true
........BannerComponent(CMSComponent) - true
........FlashComponent(CMSComponent) - true
........ImageMapComponent(CMSComponent) - true
........DynamicBannerComponent(CMSComponent) - true
........SimpleBannerComponent(CMSComponent) - true
.......ProductCarouselComponent(CMSComponent) - true
.......RotatingImagesComponent(CMSComponent) - true
.......ProductListComponent(CMSComponent) - true
.......ProductDetailComponent(CMSComponent) - true
.......ProductReferencesComponent(CMSComponent) - true
........SimpleSuggestionComponent(CMSComponent) - true
.........PurchasedCategorySuggestionComponent(CMSComponent) - true
.........CartSuggestionComponent(CMSComponent) - true
.......MiniCartComponent(CMSComponent) - true
.......NavigationBarComponent(CMSComponent) - true
.......NavigationBarCollectionComponent(CMSComponent) - true
.......NavigationComponent(CMSComponent) - true
........CategoryNavigationComponent(CMSComponent) - true
........FooterNavigationComponent(CMSComponent) - true
.......FooterComponent(CMSComponent) - true
.......ProductFeatureComponent(CMSComponent) - true
.......CategoryFeatureComponent(CMSComponent) - true
.......SubCategoryListComponent(CMSComponent) - true
.......ProductVariantSelectorComponent(CMSComponent) - true
.......ProductAddToCartComponent(CMSComponent) - true
.......SearchBoxComponent(CMSComponent) - true
.......AccountNavigationComponent(CMSComponent) - true
.......AccountNavigationCollectionComponent(CMSComponent) - true
.......JspIncludeComponent(CMSComponent) - true
.......BreadcrumbComponent(CMSComponent) - true
.......LanguageCurrencyComponent(CMSComponent) - true
.......LogoComponent(CMSComponent) - true
.......StoreFinderComponent(CMSComponent) - true
.......AccountControlComponent(CMSComponent) - true
.......ProductRefinementComponent(CMSComponent) - true
.......CMSProductListComponent(CMSComponent) - true
.......ProductGridComponent(CMSComponent) - true
.......SearchResultsListComponent(CMSComponent) - true
.......SearchResultsGridComponent(CMSComponent) - true
.......AccountBookmarkComponent(CMSComponent) - true
.......AbstractMediaContainerComponent(CMSComponent) - true
........AbstractResponsiveBannerComponent(CMSComponent) - true
.........SimpleResponsiveBannerComponent(CMSComponent) - true
.......AbstractCMSAction(CMSAction) - true
........SimpleCMSAction(CMSAction) - true
.........AddToCartAction(CMSAction) - true
.........ListAddToCartAction(CMSAction) - true
.........ListAddToEntryGroupAction(CMSAction) - true
.........ListOrderFormAction(CMSAction) - true
.........ListPickUpInStoreAction(CMSAction) - true
.........PickUpInStoreAction(CMSAction) - true
.........ShareOnSocialNetworkAction(CMSAction) - true
.........ViewOrderAction(CMSAction) - true
.........ViewStoreAction(CMSAction) - true
.........CancelOrderAction(CMSAction) - true
.........ReturnOrderAction(CMSAction) - true
.........CancelReturnAction(CMSAction) - true
.......AsmDevicesUsedComponent(CMSComponent) - true
.......AsmFavoriteColorsComponent(CMSComponent) - true
.....CMSNavigationNode(<Composed>) - true
.....PageTemplate(<Composed>) - true
......DocumentPageTemplate(<Composed>) - true
.......EmailPageTemplate(<Composed>) - true
.....AbstractRestriction(Restriction) - true
......CMSCatalogRestriction(Restriction) - true
......CMSInverseRestriction(Restriction) - true
......CMSCategoryRestriction(Restriction) - true
......CMSProductRestriction(Restriction) - true
......CMSTimeRestriction(Restriction) - true
.......CMSBaseStoreTimeRestriction(Restriction) - true
......CMSUserRestriction(Restriction) - true
......CMSUserGroupRestriction(Restriction) - true
.......ASMCMSUserGroupRestriction(Restriction) - true
......CMSCampaignRestriction(Restriction) - true
......CMSUiExperienceRestriction(Restriction) - true
......CMSActionRestriction(Restriction) - true
......AssistedServiceSessionRestriction(Restriction) - true
.....CMSNavigationEntry(<Composed>) - true
....CMSRelation(<Composed>) - true
.....ContentSlotForTemplate(<Composed>) - true
.....ContentSlotForPage(<Composed>) - true
....ContentSlotName(<Composed>) - null
....PreviewData(<Composed>) - null
....CMSPreviewTicket(<Composed>) - null
....CCPaySubValidation(<Composed>) - null
....EmailAddress(<Composed>) - null
....ExportDataHistoryEntry(<Composed>) - null
....SiteMapPage(<Composed>) - null
....SiteMapLanguageCurrency(<Composed>) - null
....RuleGroup(<Composed>) - null
....AbstractRuleTemplate(<Composed>) - null
.....SourceRuleTemplate(<Composed>) - null
......PromotionSourceRuleTemplate(<Composed>) - null
....RuleConditionDefinition(<Composed>) - null
....RuleConditionDefinitionParameter(<Composed>) - null
....RuleConditionDefinitionCategory(<Composed>) - null
....RuleConditionDefinitionRuleTypeMapping(<Composed>) - null
....RuleActionDefinition(<Composed>) - null
....RuleActionDefinitionParameter(<Composed>) - null
....RuleActionDefinitionCategory(<Composed>) - null
....RuleActionDefinitionRuleTypeMapping(<Composed>) - null
....RuleToEngineRuleTypeMapping(<Composed>) - null
....AbstractAsSearchProfile(<Composed>) - true
.....AsSimpleSearchProfile(<Composed>) - true
.....AsCategoryAwareSearchProfile(<Composed>) - true
....AsSearchProfileActivationSet(<Composed>) - true
....AbstractAsConfiguration(<Composed>) - null
.....AbstractAsSearchConfiguration(<Composed>) - true
......AbstractAsConfigurableSearchConfiguration(<Composed>) - true
.......AsSimpleSearchConfiguration(<Composed>) - true
.......AsCategoryAwareSearchConfiguration(<Composed>) - true
.....AbstractAsItemConfiguration(<Composed>) - true
......AbstractAsFacetConfiguration(<Composed>) - true
.......AsPromotedFacet(<Composed>) - true
.......AsFacet(<Composed>) - true
.......AsExcludedFacet(<Composed>) - true
......AbstractAsBoostItemConfiguration(<Composed>) - true
.......AsPromotedItem(<Composed>) - true
.......AsExcludedItem(<Composed>) - true
......AbstractAsBoostRuleConfiguration(<Composed>) - true
.......AsBoostRule(<Composed>) - true
....SmarteditConfiguration(<Composed>) - null
....PromotionActionParameter(<Composed>) - null
....ProductForPromotionSourceRule(<Composed>) - null
....CatForPromotionSourceRule(<Composed>) - null
....ExcludedCatForRule(<Composed>) - null
....ExcludedProductForRule(<Composed>) - null
....CombinedCatsForRule(<Composed>) - null
....AbstractCoupon(<Composed>) - null
.....SingleCodeCoupon(<Composed>) - null
.....MultiCodeCoupon(<Composed>) - null
....CodeGenerationConfiguration(<Composed>) - null
....CouponRedemption(<Composed>) - null
....PaymentSubscriptionResult(<Composed>) - null
....BackofficeIndexedTypeToSolrFacetSearchConfig(<Composed>) - null
....SolrModifiedItem(<Composed>) - null
....AbstractLinkEntry(<Composed>) - null
.....Divider(<Composed>) - null
.....StaticLink(<Composed>) - null
......DynamicLink(<Composed>) - null
....testObj1(<Composed>) - true
....testObj2(<Composed>) - true
...EnumerationValue(<Composed>) - null
....UserDiscountGroup(<ENUM>) - null
....UserPriceGroup(<ENUM>) - null
....UserTaxGroup(<ENUM>) - null
....LineOfBusiness(<ENUM>) - null
....RetentionState(<ENUM>) - null
....CustomerType(<ENUM>) - null
....Gender(<ENUM>) - null
....PhoneContactInfoType(<ENUM>) - null
....DeliveryStatus(<ENUM>) - null
....PaymentStatus(<ENUM>) - null
....OrderStatus(<ENUM>) - null
....ExportStatus(<ENUM>) - null
....ImportStatus(<ENUM>) - null
....SalesApplication(<ENUM>) - null
....ReturnFulfillmentStatus(<ENUM>) - null
....QuoteState(<ENUM>) - null
....CreditCardType(<ENUM>) - null
....ProductPriceGroup(<ENUM>) - null
....ProductTaxGroup(<ENUM>) - null
....ProductDiscountGroup(<ENUM>) - null
....OrderEntryStatus(<ENUM>) - null
....PickupInStoreMode(<ENUM>) - null
....EncodingEnum(<ENUM>) - null
....BarcodeType(<ENUM>) - null
....ArticleApprovalStatus(<ENUM>) - null
....SavedValueEntryType(<ENUM>) - null
....ScriptType(<ENUM>) - null
....documentTypeEnum(<ENUM>) - null
....RendererTypeEnum(<ENUM>) - null
....ErrorMode(<ENUM>) - null
....JobLogLevel(<ENUM>) - null
....CronJobStatus(<ENUM>) - null
....CronJobResult(<ENUM>) - null
....BooleanOperator(<ENUM>) - null
....ImpExValidationModeEnum(<ENUM>) - null
....ExportConverterEnum(<ENUM>) - null
....IndexerOperationValues(<ENUM>) - null
....DistributedProcessState(<ENUM>) - null
....ActionType(<ENUM>) - null
....ProcessState(<ENUM>) - null
....WarehouseConsignmentState(<ENUM>) - null
....BatchType(<ENUM>) - null
....Severity(<ENUM>) - null
....ValidatorLanguage(<ENUM>) - null
....ConfiguratorType(<ENUM>) - null
....ProductInfoStatus(<ENUM>) - null
....ProductReferenceTypeEnum(<ENUM>) - null
....ProductDifferenceMode(<ENUM>) - null
....CategoryDifferenceMode(<ENUM>) - null
....ClassificationAttributeTypeEnum(<ENUM>) - null
....ClassificationAttributeVisibilityEnum(<ENUM>) - null
....AdvancedQueryComparatorEnum(<ENUM>) - null
....EmptyParamEnum(<ENUM>) - null
....PriceRowChannel(<ENUM>) - null
....WorkflowActionType(<ENUM>) - null
....WorkflowActionStatus(<ENUM>) - null
....CsInterventionType(<ENUM>) - null
....CsEventReason(<ENUM>) - null
....CsResolutionType(<ENUM>) - null
....RuleType(<ENUM>) - null
....DroolsEqualityBehavior(<ENUM>) - null
....DroolsEventProcessingMode(<ENUM>) - null
....DroolsSessionType(<ENUM>) - null
....IntervalResolution(<ENUM>) - null
....FraudStatus(<ENUM>) - null
....ConsignmentStatus(<ENUM>) - null
....InStockStatus(<ENUM>) - null
....StockLevelUpdateType(<ENUM>) - null
....DistanceUnit(<ENUM>) - null
....WeekDay(<ENUM>) - null
....PointOfServiceTypeEnum(<ENUM>) - null
....OrderModificationEntryStatus(<ENUM>) - null
....OrderCancelEntryStatus(<ENUM>) - null
....CancelReason(<ENUM>) - null
....ReturnStatus(<ENUM>) - null
....ReturnAction(<ENUM>) - null
....ReplacementReason(<ENUM>) - null
....RefundReason(<ENUM>) - null
....SiteTheme(<ENUM>) - null
....SiteChannel(<ENUM>) - null
....PaymentTransactionType(<ENUM>) - null
....CustomerReviewApprovalType(<ENUM>) - null
....CockpitSpecialCollectionType(<ENUM>) - null
....KeywordRedirectMatchType(<ENUM>) - null
....SolrPropertiesTypes(<ENUM>) - null
....SolrIndexedPropertyFacetType(<ENUM>) - null
....SolrWildcardType(<ENUM>) - null
....SolrIndexedPropertyFacetSort(<ENUM>) - null
....IndexMode(<ENUM>) - null
....SolrCommitMode(<ENUM>) - null
....SolrOptimizeMode(<ENUM>) - null
....SolrServerModes(<ENUM>) - null
....SolrQueryMethod(<ENUM>) - null
....IndexerOperationStatus(<ENUM>) - null
....CxItemStatus(<ENUM>) - null
....CxGroupingOperator(<ENUM>) - null
....CxCatalogLookupType(<ENUM>) - null
....CsEmailRecipients(<ENUM>) - null
....CsTicketCategory(<ENUM>) - null
....CsTicketPriority(<ENUM>) - null
....CsTicketState(<ENUM>) - null
....ABTestScopes(<ENUM>) - null
....LinkTargets(<ENUM>) - null
....FlashQuality(<ENUM>) - null
....FlashScale(<ENUM>) - null
....FlashWmode(<ENUM>) - null
....FlashSalign(<ENUM>) - null
....CarouselScroll(<ENUM>) - null
....RotatingImagesComponentEffect(<ENUM>) - null
....ProductListLayouts(<ENUM>) - null
....CartTotalDisplayType(<ENUM>) - null
....NavigationBarMenuLayout(<ENUM>) - null
....CmsApprovalStatus(<ENUM>) - null
....CmsPageStatus(<ENUM>) - null
....UiExperienceLevel(<ENUM>) - null
....LiveEditVariant(<ENUM>) - null
....ExportDataStatus(<ENUM>) - null
....SiteMapPageEnum(<ENUM>) - null
....SiteMapChangeFrequencyEnum(<ENUM>) - null
....RuleStatus(<ENUM>) - null
....AsFacetsMergeMode(<ENUM>) - null
....AsBoostItemsMergeMode(<ENUM>) - null
....AsBoostRulesMergeMode(<ENUM>) - null
....AsFacetType(<ENUM>) - null
....AsBoostOperator(<ENUM>) - null
....AsBoostType(<ENUM>) - null
....SolrItemModificationType(<ENUM>) - null
....CockpitLinkArea(<ENUM>) - null
....RelationEndCardinalityEnum(<ENUM>) - null
....TypeOfCollectionEnum(<ENUM>) - null
....TestEnum(<ENUM>) - null
....MediaManagementTypeEnum(<ENUM>) - null
....GroupType(<ENUM>) - null
....DayOfWeek(<ENUM>) - null
....ImpExProcessModeEnum(<ENUM>) - null
....ScriptModifierEnum(<ENUM>) - null
....ScriptTypeEnum(<ENUM>) - null
....RegexpFlag(<ENUM>) - null
....IDType(<ENUM>) - null
....ArticleStatus(<ENUM>) - null
....EclassVersion(<ENUM>) - null
....EtimVersion(<ENUM>) - null
....ProfiClassVersion(<ENUM>) - null
....SyncItemStatus(<ENUM>) - null
....OrderCancelState(<ENUM>) - null
....OrderReturnEntryStatus(<ENUM>) - null
....StockLevelStatus(<ENUM>) - null
....ReportTimeRange(<ENUM>) - null
....OneDayRange(<ENUM>) - null
....RefreshTimeOption(<ENUM>) - null
....ConverterType(<ENUM>) - null
....QuoteAction(<ENUM>) - null
....QuoteUserType(<ENUM>) - null
....DiscountType(<ENUM>) - null
....SearchQueryContext(<ENUM>) - null
....QuoteNotificationType(<ENUM>) - null
....CustomizationConversionOptions(<ENUM>) - null
....CustomerSegmentationConversionOptions(<ENUM>) - null
....SegmentConversionOptions(<ENUM>) - null
....VariationConversionOptions(<ENUM>) - null
....TriggerConversionOptions(<ENUM>) - null
....EventType(<ENUM>) - null
....CheckoutPciOptionEnum(<ENUM>) - null
....CheckoutFlowEnum(<ENUM>) - null
....OrderEntrySelectionStrategy(<ENUM>) - null
....FactContextType(<ENUM>) - null
....SwatchColorEnum(<ENUM>) - null
...TypeManagerManaged(<Composed>) - null
....SearchRestriction(<Composed>) - null
....Type(<Composed>) - null
.....ComposedType(<Composed>) - null
......RelationMetaType(<Composed>) - null
......VariantType(<Composed>) - null
......CMSComponentType(<Composed>) - null
.......CMSActionType(<Composed>) - null
......CMSPageType(<Composed>) - null
......RestrictionType(<Composed>) - null
......ConfigProxyMetaType(<Composed>) - null
......ViewType(<Composed>) - null
......EnumerationMetaType(<Composed>) - null
.....CollectionType(<Composed>) - null
.....MapType(<Composed>) - null
.....AtomicType(<Composed>) - null
....Descriptor(<Composed>) - null
.....AttributeDescriptor(<Composed>) - null
......RelationDescriptor(<Composed>) - null
......VariantAttributeDescriptor(<Composed>) - null
......ExpressionAttributeDescriptor(<Composed>) - null
......ConfigAttributeDescriptor(<Composed>) - null
......ViewAttributeDescriptor(<Composed>) - null
...TestItem(<Composed>) - null
....TestItemType2(<Composed>) - null
.....TestItemType3(<Composed>) - null
..Link(<Composed>) - null
...CommentItemRelation(<Relation>) - null
...Item2CockpitItemTemplateRelation(<Relation>) - null
...PrincipalGroupRelation(<Relation>) - null
...Category2PrincipalRelation(<Relation>) - null
...Principal2WriteableCatalogVersionRelation(<Relation>) - null
...Principal2ReadableCatalogVersionRelation(<Relation>) - null
...SyncItemJob2Principal(<Relation>) - null
...WorkflowTemplate2PrincipalRelation(<Relation>) - null
...CommentWatcherRelation(<Relation>) - null
...ReadPrincipal2CockpitObjectAbstractCollectionRelation(<Relation>) - null
...WritePrincipal2CockpitObjectAbstractCollectionRelation(<Relation>) - null
...Principal2CockpitUIComponentReadAccessRelation(<Relation>) - null
...Principal2CockpitUIComponentWriteAccessRelation(<Relation>) - null
...ReadPrincipal2CockpitSavedQueryRelation(<Relation>) - null
...Principal2ReadableAbstractLinkEntryRelation(<Relation>) - null
...BackofficeSavedQuery2UserGroupRelation(<Relation>) - null
...UserGroupsForRestriction(<Relation>) - null
...CsAgentGroup2BaseStore(<Relation>) - null
...CommentAssigneeRelation(<Relation>) - null
...UsersForRestriction(<Relation>) - null
...Agent2BaseStore(<Relation>) - null
...OrderDiscountRelation(<Relation>) - null
...PromotionRestriction2OrderRel(<Relation>) - null
...QuoteToNotificationRel(<Relation>) - null
...BaseStore2DeliveryModeRel(<Relation>) - null
...SyncJob2LangRel(<Relation>) - null
...SolrFacetSearchConfig2LanguageRelation(<Relation>) - null
...BaseStore2LanguageRel(<Relation>) - null
...ZoneCountryRelation(<Relation>) - null
...BaseStore2CountryRel(<Relation>) - null
...SolrFacetSearchConfig2CurrencyRelation(<Relation>) - null
...BaseStore2CurrencyRel(<Relation>) - null
...CategoryMediaRelation(<Relation>) - null
...Format2MedForRel(<Relation>) - null
...Product2KeywordRelation(<Relation>) - null
...CategoryProductRelation(<Relation>) - null
...ProductPromotionRelation(<Relation>) - null
...ProductVendorRelation(<Relation>) - null
...ProductDeliveryModeRelation(<Relation>) - null
...StockLevelProductRelation(<Relation>) - null
...ProductsForRestriction(<Relation>) - null
...ProductsForProductListComponent(<Relation>) - null
...ProductsForProductCarouselComponent(<Relation>) - null
...Format2ComTypRel(<Relation>) - null
...SyncJob2TypeRel(<Relation>) - null
...DependentCatalogVersionSyncJobRelation(<Relation>) - null
...CronJobProcessedStepsRelation(<Relation>) - null
...CronJobPendingStepsRelation(<Relation>) - null
...CxPersProcToCatVer(<Relation>) - null
...ConstraintGroup2AbstractConstraintRelation(<Relation>) - null
...ComposedType2CoverageConstraintGroupRelation(<Relation>) - null
...CatalogsForBaseStores(<Relation>) - null
...CatalogsForRestriction(<Relation>) - null
...CatalogsForCMSSite(<Relation>) - null
...Category2KeywordRelation(<Relation>) - null
...SolrFacetSearchConfig2CatalogVersionRelation(<Relation>) - null
...PreviewDataToCatalogVersion(<Relation>) - null
...CategoryCategoryRelation(<Relation>) - null
...CategoryPromotionRelation(<Relation>) - null
...CategoriesForRestriction(<Relation>) - null
...CategoriesForProductCarouselComponent(<Relation>) - null
...CockpitItemTemplate2ClassificationClassRelation(<Relation>) - null
...WorkflowActionOrderingRelation(<Relation>) - null
...WorkflowActionTemplateLinkTemplateRelation(<Relation>) - null
...WorkflowActionLinkRelation(<Relation>) - null
...WorkflowActionItemAttachmentRelation(<Relation>) - null
...ComponentReadPrincipalRelation(<Relation>) - null
...ComponentWritePrincipalRelation(<Relation>) - null
...ComponentCreatePrincipalRelation(<Relation>) - null
...ComponentRemovePrincipalRelation(<Relation>) - null
...HistoryDocumentRelation(<Relation>) - null
...PoS2WarehouseRel(<Relation>) - null
...BaseStore2WarehouseRel(<Relation>) - null
...StoresForCMSSite(<Relation>) - null
...StoreTimeRestriction2BaseStore(<Relation>) - null
...StoreLocation2StoreLocatorFeature(<Relation>) - null
...ValidComponentTypesForSite(<Relation>) - null
...CampaignsForRestriction(<Relation>) - null
...Campaign2SourceRuleRelation(<Relation>) - null
...SolrFacetSearchConfig2SolrValueRangeSetRelation(<Relation>) - null
...SolrIndexedProperty2SolrValueRangeSetRelation(<Relation>) - null
...PreviewDataToCxVariation(<Relation>) - null
...CxSegmentToTrigger(<Relation>) - null
...CxSegmentToExpressionTrigger(<Relation>) - null
...PreviewDataToCxSegment(<Relation>) - null
...ComponentTypeGroups2ComponentType(<Relation>) - null
...ElementsForSlot(<Relation>) - null
...RestrictionsForComponents(<Relation>) - null
...CmsActionsForCmsComponents(<Relation>) - null
...ElementsForContainer(<Relation>) - null
...CMSLinksForNavNodes(<Relation>) - null
...BannersForRotatingComponent(<Relation>) - null
...ValidPageTypesForTemplates(<Relation>) - null
...RestrictionsForPages(<Relation>) - null
...CMSContentPagesForNavNodes(<Relation>) - null