-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathUI.xml
2028 lines (1907 loc) · 122 KB
/
UI.xml
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
<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="4.01" xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx">
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
<edmx:Include Namespace="Org.OData.Core.V1" Alias="Core" />
</edmx:Reference>
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Validation.V1.xml">
<edmx:Include Alias="Validation" Namespace="Org.OData.Validation.V1" />
</edmx:Reference>
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Aggregation.V1.xml">
<edmx:Include Alias="Aggregation" Namespace="Org.OData.Aggregation.V1" />
</edmx:Reference>
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Communication.xml">
<edmx:Include Namespace="com.sap.vocabularies.Communication.v1" Alias="Communication" />
</edmx:Reference>
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Common.xml">
<edmx:Include Namespace="com.sap.vocabularies.Common.v1" Alias="Common" />
</edmx:Reference>
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/HTML5.xml">
<edmx:Include Namespace="com.sap.vocabularies.HTML5.v1" Alias="HTML5" />
</edmx:Reference>
<edmx:Reference Uri="https://sap.github.io/odata-vocabularies/vocabularies/Analytics.xml">
<edmx:Include Namespace="com.sap.vocabularies.Analytics.v1" Alias="Analytics" />
</edmx:Reference>
<edmx:DataServices>
<Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Alias="UI" Namespace="com.sap.vocabularies.UI.v1">
<Annotation Term="Core.Description">
<String>Terms for presenting data in user interfaces</String>
</Annotation>
<Annotation Term="Core.LongDescription">
<String>The SAP UI Vocabulary aims to optimize usage of data in UI channels.
It focuses on usage patterns of data in UIs, not on UI patterns, and it is completely independent of the
UI technologies or devices used to visualize the data.
These usage patterns represent certain semantic views on business data, some of them very general,
others centering around the concept of a Thing, i.e. something tangible to end users.
Examples for Things are semantic object instances or business object instances.
One example for a usage pattern is the collection of properties which helps the user to identify a Thing,
the [UI.Identification](#Identification) term.
Another example is the [UI.LineItem](#LineItem) term, which is a set of properties suitable for visualizing
a collection of business object instances, e.g. as a list or table.</String>
</Annotation>
<Annotation Term="Core.Description" Qualifier="Published">
<String>2019-02-14 © Copyright 2013 SAP SE. All rights reserved</String>
</Annotation>
<Annotation Term="Core.Links">
<Collection>
<Record>
<PropertyValue Property="rel" String="latest-version" />
<PropertyValue Property="href" String="https://sap.github.io/odata-vocabularies/vocabularies/UI.xml" />
</Record>
<Record>
<PropertyValue Property="rel" String="alternate" />
<PropertyValue Property="href" String="https://sap.github.io/odata-vocabularies/vocabularies/UI.json" />
</Record>
<Record>
<PropertyValue Property="rel" String="describedby" />
<PropertyValue Property="href" String="https://github.com/sap/odata-vocabularies/blob/main/vocabularies/UI.md" />
</Record>
</Collection>
</Annotation>
<!-- Semantic Views / Perspectives -->
<Term Name="HeaderInfo" Type="UI.HeaderInfoType" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Information for the header area of an entity representation. HeaderInfo is mandatory for main entity types of the model" />
</Term>
<ComplexType Name="HeaderInfoType">
<Property Name="TypeName" Type="Edm.String" Nullable="false">
<Annotation Term="Core.IsLanguageDependent" />
<Annotation Term="Core.Description" String="Name of the main entity type" />
</Property>
<Property Name="TypeNamePlural" Type="Edm.String" Nullable="false">
<Annotation Term="Core.IsLanguageDependent" />
<Annotation Term="Core.Description" String="Plural form of the name of the main entity type" />
</Property>
<Property Name="Title" Type="UI.DataFieldAbstract" Nullable="true">
<Annotation Term="Core.Description" String="Title, e.g. for overview pages" />
<Annotation Term="Core.LongDescription" String="This can be a [DataField](#DataField) and any of its children, or a [DataFieldForAnnotation](#DataFieldForAnnotation) targeting [ConnectedFields](#ConnectedFields)." />
<Annotation Term="Validation.DerivedTypeConstraint">
<Collection>
<String>UI.DataField</String>
<String>UI.DataFieldForAnnotation</String>
</Collection>
</Annotation>
</Property>
<Property Name="Description" Type="UI.DataFieldAbstract" Nullable="true">
<Annotation Term="Core.Description" String="Description, e.g. for overview pages" />
<Annotation Term="Core.LongDescription" String="This can be a [DataField](#DataField) and any of its children, or a [DataFieldForAnnotation](#DataFieldForAnnotation) targeting [ConnectedFields](#ConnectedFields)." />
<Annotation Term="Validation.DerivedTypeConstraint">
<Collection>
<String>UI.DataField</String>
<String>UI.DataFieldForAnnotation</String>
</Collection>
</Annotation>
</Property>
<Property Name="Image" Type="Edm.Stream" Nullable="true">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Image for an instance of the entity type. If the property has a valid value, it can be used for the visualization of the instance. If it is not available or not valid the value of the property `ImageUrl` can be used instead." />
</Property>
<Property Name="ImageUrl" Type="Edm.String" Nullable="true">
<Annotation Term="Core.IsURL" />
<Annotation Term="Core.Description" String="Image URL for an instance of the entity type. If the property has a valid value, it can be used for the visualization of the instance. If it is not available or not valid the value of the property `TypeImageUrl` can be used instead." />
</Property>
<Property Name="TypeImageUrl" Type="Edm.String" Nullable="true">
<Annotation Term="Core.IsURL" />
<Annotation Term="Core.Description" String="Image URL for the entity type" />
</Property>
<Property Name="Initials" Type="Edm.String" Nullable="true">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Latin letters to be used in case no `Image`, `ImageUrl`, or `TypeImageUrl` is present" />
</Property>
</ComplexType>
<Term Name="Identification" Type="Collection(UI.DataFieldAbstract)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Collection of fields identifying the object" />
</Term>
<Term Name="Badge" Type="UI.BadgeType" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Information usually displayed in the form of a business card" />
</Term>
<ComplexType Name="BadgeType">
<Property Name="HeadLine" Type="UI.DataField" Nullable="false">
<Annotation Term="Core.Description" String="Headline" />
</Property>
<Property Name="Title" Type="UI.DataField" Nullable="false">
<Annotation Term="Core.Description" String="Title" />
</Property>
<Property Name="ImageUrl" Type="Edm.String" Nullable="true">
<Annotation Term="Core.IsURL" />
<Annotation Term="Core.Description" String="Image URL for an instance of the entity type. If the property has a valid value, it can be used for the visualization of the instance. If it is not available or not valid the value of the property `TypeImageUrl` can be used instead." />
</Property>
<Property Name="TypeImageUrl" Type="Edm.String" Nullable="true">
<Annotation Term="Core.IsURL" />
<Annotation Term="Core.Description" String="Image URL for the entity type" />
</Property>
<Property Name="MainInfo" Type="UI.DataField" Nullable="true">
<Annotation Term="Core.Description" String="Main information on the business card" />
</Property>
<Property Name="SecondaryInfo" Type="UI.DataField" Nullable="true">
<Annotation Term="Core.Description" String="Additional information on the business card" />
</Property>
</ComplexType>
<Term Name="LineItem" Type="Collection(UI.DataFieldAbstract)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Collection of data fields for representation in a table or list" />
<Annotation Term="UI.ThingPerspective" />
</Term>
<Term Name="StatusInfo" Type="Collection(UI.DataFieldAbstract)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Collection of data fields describing the status of an entity" />
<Annotation Term="UI.ThingPerspective" />
</Term>
<Term Name="FieldGroup" Type="UI.FieldGroupType" Nullable="false" AppliesTo="EntityType Action Function ActionImport FunctionImport">
<Annotation Term="Core.Description" String="Group of fields with an optional label" />
<Annotation Term="UI.ThingPerspective" />
</Term>
<ComplexType Name="FieldGroupType">
<Property Name="Label" Type="Edm.String" Nullable="true">
<Annotation Term="Core.IsLanguageDependent" />
<Annotation Term="Core.Description" String="Label for the field group" />
</Property>
<Property Name="Data" Type="Collection(UI.DataFieldAbstract)" Nullable="false">
<Annotation Term="Core.Description" String="Collection of data fields" />
</Property>
</ComplexType>
<Term Name="ConnectedFields" Type="UI.ConnectedFieldsType" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Group of semantically connected fields with a representation template and an optional label" />
<Annotation Term="Core.Example">
<Record>
<Annotation Term="com.sap.vocabularies.UI.v1.ConnectedFields" Qualifier="Material">
<Record>
<PropertyValue Property="Label" String="Material" />
<PropertyValue Property="Template" String="{MaterialName} - {MaterialClassName}" />
<PropertyValue Property="Data">
<Record>
<PropertyValue Property="MaterialName">
<Record Type="com.sap.vocabularies.UI.v1.DataField">
<PropertyValue Property="Value" Path="Material" />
</Record>
</PropertyValue>
<PropertyValue Property="MaterialClassName">
<Record Type="com.sap.vocabularies.UI.v1.DataField">
<PropertyValue Property="Value" Path="MaterialClass" />
</Record>
</PropertyValue>
</Record>
</PropertyValue>
</Record>
</Annotation>
</Record>
</Annotation>
</Term>
<ComplexType Name="ConnectedFieldsType">
<Annotation Term="Core.Description" String="Group of semantically connected fields with a representation template and an optional label" />
<Property Name="Label" Type="Edm.String" Nullable="true">
<Annotation Term="Core.IsLanguageDependent" />
<Annotation Term="Core.Description" String="Label for the connected fields" />
</Property>
<Property Name="Template" Type="Edm.String" Nullable="false">
<Annotation Term="Core.IsLanguageDependent" />
<Annotation Term="Core.Description" String="Template for representing the connected fields" />
<Annotation Term="Core.LongDescription" String="Template variables are identifiers enclosed in curly braces, e.g. `{MaterialName} - {MaterialClassName}`. The `Data` collection assigns values to the template variables." />
</Property>
<Property Name="Data" Type="Core.Dictionary" Nullable="false">
<Annotation Term="Validation.OpenPropertyTypeConstraint">
<Collection>
<String>UI.DataFieldAbstract</String>
</Collection>
</Annotation>
<Annotation Term="Core.Description" String="Dictionary of template variables" />
<Annotation Term="Core.LongDescription" String="Each template variable used in `Template` must be assigned a value here. The value must be of type [DataFieldAbstract](#DataFieldAbstract)" />
</Property>
</ComplexType>
<!-- Under Discussion
<Term Name="GeoPoints" Type="Collection(Edm.AnnotationPath)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description">
<String>
Each collection element MUST reference an annotation of a
- Communication.Contact or
- collection of Communication.ContactData or
- UI.Contacts or
- UI.GeoLocation or
- collection of UI.GeoLocationType
</String>
</Annotation>
<Annotation Term="UI.ThingPerspective" />
</Term>
-->
<Term Name="GeoLocations" Type="Collection(UI.GeoLocationType)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Collection of geographic locations" />
</Term>
<Term Name="GeoLocation" Type="UI.GeoLocationType" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Geographic location" />
</Term>
<ComplexType Name="GeoLocationType">
<Annotation Term="Core.Description" String="Properties that define a geographic location" />
<Property Name="Latitude" Type="Edm.Double" Nullable="true">
<Annotation Term="Core.Description" String="Geographic latitude" />
</Property>
<Property Name="Longitude" Type="Edm.Double" Nullable="true">
<Annotation Term="Core.Description" String="Geographic longitude" />
</Property>
<Property Name="Location" Type="Edm.GeographyPoint" SRID="variable" Nullable="true">
<Annotation Term="Core.Description" String="A point in a round-earth coordinate system" />
</Property>
<Property Name="Address" Type="Communication.AddressType" Nullable="true">
<Annotation Term="Core.Description" String="vCard-style address" />
</Property>
</ComplexType>
<Term Name="Contacts" Type="Collection(Edm.AnnotationPath)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Collection of contacts" />
<Annotation Term="Core.LongDescription" String="Each collection item MUST reference an annotation of a Communication.Contact" />
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Validation.AllowedTerms">
<Collection>
<String>Communication.Contact</String>
</Collection>
</Annotation>
</Term>
<Term Name="MediaResource" Type="UI.MediaResourceType" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Properties that describe a media resource" />
<Annotation Term="Core.LongDescription" String="Either `Url` or `Stream` MUST be present, and never both." />
</Term>
<ComplexType Name="MediaResourceType">
<Property Name="Url" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="URL of media resource" />
<Annotation Term="Core.IsURL" />
<Annotation Term="Validation.ApplicableTerms">
<Collection>
<String>HTML5.LinkTarget</String>
</Collection>
</Annotation>
</Property>
<Property Name="Stream" Type="Edm.Stream" Nullable="true">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Stream of media resource" />
<Annotation Term="Validation.ApplicableTerms">
<Collection>
<String>HTML5.LinkTarget</String>
</Collection>
</Annotation>
</Property>
<Property Name="ContentType" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Content type, such as application/pdf, video/x-flv, image/jpeg" />
<Annotation Term="Core.IsMediaType" />
</Property>
<Property Name="ByteSize" Type="Edm.Int64" Nullable="true">
<Annotation Term="Core.Description" String="Resource size in bytes" />
</Property>
<Property Name="ChangedAt" Type="Edm.DateTimeOffset" Nullable="true">
<Annotation Term="Core.Description" String="Date of last change" />
</Property>
<Property Name="Thumbnail" Type="UI.ImageType" Nullable="true">
<Annotation Term="Core.Description" String="Thumbnail image" />
</Property>
<Property Name="Title" Type="UI.DataField" Nullable="true">
<Annotation Term="Core.Description" String="Resource title" />
</Property>
<Property Name="Description" Type="UI.DataField" Nullable="true">
<Annotation Term="Core.Description" String="Resource description" />
</Property>
</ComplexType>
<ComplexType Name="ImageType">
<Annotation Term="Core.Description" String="Properties that describe an image" />
<Annotation Term="Core.LongDescription" String="Either `Url` or `Stream` MUST be present, and never both." />
<Property Name="Url" Type="Edm.String" Nullable="false">
<Annotation Term="Core.Description" String="URL of image" />
<Annotation Term="Core.IsURL" />
</Property>
<Property Name="Stream" Type="Edm.Stream" Nullable="true">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Stream of image" />
<Annotation Term="Validation.ApplicableTerms">
<Collection>
<String>HTML5.LinkTarget</String>
</Collection>
</Annotation>
</Property>
<Property Name="Width" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Width of image" />
</Property>
<Property Name="Height" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Height of image" />
</Property>
</ComplexType>
<!-- Under discussion
<Term Name="AdditionalInfo" Type="Edm.AnnotationPath" Nullable="true" AppliesTo="Annotation">
<Annotation Term="Core.Description">
<String>
Applies to UI.GeoLocation and Communication.Contact annotations only
Provides additional related information for a UI.GeoLocation or Communication.Contact
Reference to UI.HeaderInfo, UI.Badge, a qualified UI.FieldGroup, or a dedicated property tagged with Core.IsURL
</String>
</Annotation>
</Term>
-->
<Term Name="DataPoint" Type="UI.DataPointType" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Visualization of a single point of data, typically a number; may also be textual, e.g. a status value" />
</Term>
<ComplexType Name="DataPointType">
<Property Name="Title" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Title of the data point" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="Description" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Short description" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="LongDescription" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Full description" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="Value" Type="Edm.PrimitiveType" Nullable="false">
<Annotation Term="Core.Description" String="Numeric value" />
<Annotation Term="Core.LongDescription">
<String>
The value is typically provided via a `Path` construct. The path MUST lead to a direct property of the same entity type or a property of a complex property (recursively) of that entity type, navigation segments are not allowed.
It could be annotated with either `UoM.ISOCurrency` or `UoM.Unit`.
Percentage values are annotated with `UoM.Unit = '%'`.
A renderer should take an optional `Common.Text` annotation into consideration.
</String>
</Annotation>
</Property>
<Property Name="TargetValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description" String="Target value" />
</Property>
<Property Name="ForecastValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description" String="Forecast value" />
</Property>
<Property Name="MinimumValue" Type="Edm.Decimal" Scale="variable" Nullable="true">
<Annotation Term="Core.Description" String="Minimum value (for output rendering)" />
</Property>
<Property Name="MaximumValue" Type="Edm.Decimal" Scale="variable" Nullable="true">
<Annotation Term="Core.Description" String="Maximum value (for output rendering)" />
</Property>
<Property Name="ValueFormat" Type="UI.NumberFormat" Nullable="true">
<Annotation Term="Core.Description" String="Number format" />
</Property>
<Property Name="Visualization" Type="UI.VisualizationType" Nullable="true">
<Annotation Term="Core.Description" String="Preferred visualization" />
</Property>
<Property Name="SampleSize" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description">
<String>
Sample size used for the determination of the data point; should contain just integer value as Edm.Byte, Edm.SByte, Edm.Intxx, and Edm.Decimal with scale 0.
</String>
</Annotation>
</Property>
<Property Name="ReferencePeriod" Type="UI.ReferencePeriod" Nullable="true">
<Annotation Term="Core.Description" String="Reference period" />
</Property>
<Property Name="Criticality" Type="UI.CriticalityType" Nullable="true">
<Annotation Term="Core.Description" String="Service-calculated criticality, alternative to CriticalityCalculation" />
</Property>
<Property Name="CriticalityLabels" Type="Edm.AnnotationPath" Nullable="true">
<Annotation Term="Core.Description" String="Custom labels for the criticality legend. Annotation path MUST end in UI.CriticalityLabels" />
<Annotation Term="Validation.AllowedTerms">
<Collection>
<String>UI.CriticalityLabels</String>
</Collection>
</Annotation>
</Property>
<Property Name="CriticalityRepresentation" Type="UI.CriticalityRepresentationType" Nullable="true">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Decides if criticality is visualized in addition by means of an icon" />
</Property>
<Property Name="CriticalityCalculation" Type="UI.CriticalityCalculationType" Nullable="true">
<Annotation Term="Core.Description" String="Parameters for client-calculated criticality, alternative to Criticality" />
</Property>
<Property Name="Trend" Type="UI.TrendType" Nullable="true">
<Annotation Term="Core.Description" String="Service-calculated trend, alternative to TrendCalculation" />
</Property>
<Property Name="TrendCalculation" Type="UI.TrendCalculationType" Nullable="true">
<Annotation Term="Core.Description" String="Parameters for client-calculated trend, alternative to Trend" />
</Property>
<Property Name="Responsible" Type="Communication.ContactType" Nullable="true">
<Annotation Term="Core.Description" String="Contact person" />
</Property>
</ComplexType>
<ComplexType Name="NumberFormat">
<Annotation Term="Core.Description" String="Describes how to visualise a number" />
<Property Name="ScaleFactor" Type="Edm.Decimal" Scale="variable" Nullable="true">
<Annotation Term="Core.Description" String="Display value in *ScaleFactor* units, e.g. 1000 for k (kilo), 1e6 for M (Mega)" />
</Property>
<Property Name="NumberOfFractionalDigits" Type="Edm.Byte" Nullable="true">
<Annotation Term="Core.Description" String="Number of fractional digits of the scaled value to be visualized" />
</Property>
</ComplexType>
<EnumType Name="VisualizationType">
<Member Name="Number">
<Annotation Term="Core.Description" String="Visualize as a number" />
</Member>
<Member Name="BulletChart">
<Annotation Term="Core.Description" String="Visualize as bullet chart - requires TargetValue" />
</Member>
<Member Name="Progress">
<Annotation Term="Core.Description" String="Visualize as progress indicator - requires TargetValue" />
</Member>
<Member Name="Rating">
<Annotation Term="Core.Description" String="Visualize as partially or completely filled stars/hearts/... - requires TargetValue" />
</Member>
<Member Name="Donut">
<Annotation Term="Core.Description" String="Visualize as donut, optionally with missing segment - requires TargetValue" />
</Member>
<Member Name="DeltaBulletChart">
<Annotation Term="Core.Description" String="Visualize as delta bullet chart - requires TargetValue" />
</Member>
</EnumType>
<ComplexType Name="ReferencePeriod">
<Annotation Term="Core.Description" String="Reference period" />
<Property Name="Description" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Short description of the reference period" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="Start" Type="Edm.DateTimeOffset" Nullable="true">
<Annotation Term="Core.Description" String="Start of the reference period" />
</Property>
<Property Name="End" Type="Edm.DateTimeOffset" Nullable="true">
<Annotation Term="Core.Description" String="End of the reference period" />
</Property>
</ComplexType>
<EnumType Name="CriticalityType">
<Annotation Term="Core.Description" String="Criticality of a value or status, represented e.g. via semantic colors (https://experience.sap.com/fiori-design-web/foundation/colors/#semantic-colors)" />
<Member Name="VeryNegative" Value="-1">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Very negative / dark-red status - risk - out of stock - late" />
</Member>
<Member Name="Neutral" Value="0">
<Annotation Term="Core.Description" String="Neutral / grey status - inactive - open - in progress" />
</Member>
<Member Name="Negative" Value="1">
<Annotation Term="Core.Description" String="Negative / red status - attention - overload - alert" />
</Member>
<Member Name="Critical" Value="2">
<Annotation Term="Core.Description" String="Critical / orange status - warning" />
</Member>
<Member Name="Positive" Value="3">
<Annotation Term="Core.Description" String="Positive / green status - completed - available - on track - acceptable" />
</Member>
<Member Name="VeryPositive" Value="4">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Very positive - above max stock - excess" />
</Member>
<Member Name="Information" Value="5">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Information - noticable - informative" />
</Member>
</EnumType>
<ComplexType Name="CriticalityCalculationType" BaseType="UI.CriticalityThresholdsType">
<Annotation Term="Core.Description" String="Describes how to calculate the criticality of a value depending on the improvement direction" />
<Annotation Term="Core.LongDescription">
<String>
The calculation is done by comparing a value to the threshold values relevant for the specified improvement direction.
The value to be compared is
- Value - if ReferenceValue is not specified
- Value sub ReferenceValue – if ReferenceValue is specified and IsRelativeDifference is not specified or specified as false
- (Value sub ReferenceValue) divBy ReferenceValue – if ReferenceValue is specified and IsRelativeDifference is specified as true
For improvement direction `Target`, the criticality is calculated using both low and high threshold values. It will be
- Positive if the value is greater than or equal to AcceptanceRangeLowValue and lower than or equal to AcceptanceRangeHighValue
- Neutral if the value is greater than or equal to ToleranceRangeLowValue and lower than AcceptanceRangeLowValue OR greater than AcceptanceRangeHighValue and lower than or equal to ToleranceRangeHighValue
- Critical if the value is greater than or equal to DeviationRangeLowValue and lower than ToleranceRangeLowValue OR greater than ToleranceRangeHighValue and lower than or equal to DeviationRangeHighValue
- Negative if the value is lower than DeviationRangeLowValue or greater than DeviationRangeHighValue
For improvement direction `Minimize`, the criticality is calculated using the high threshold values. It is
- Positive if the value is lower than or equal to AcceptanceRangeHighValue
- Neutral if the value is greater than AcceptanceRangeHighValue and lower than or equal to ToleranceRangeHighValue
- Critical if the value is greater than ToleranceRangeHighValue and lower than or equal to DeviationRangeHighValue
- Negative if the value is greater than DeviationRangeHighValue
For improvement direction `Maximize`, the criticality is calculated using the low threshold values. It is
- Positive if the value is greater than or equal to AcceptanceRangeLowValue
- Neutral if the value is less than AcceptanceRangeLowValue and greater than or equal to ToleranceRangeLowValue
- Critical if the value is lower than ToleranceRangeLowValue and greater than or equal to DeviationRangeLowValue
- Negative if the value is lower than DeviationRangeLowValue
Thresholds are optional. For unassigned values, defaults are determined in this order:
- For DeviationRange, an omitted LowValue translates into the smallest possible number (-INF), an omitted HighValue translates into the largest possible number (+INF)
- For ToleranceRange, an omitted LowValue will be initialized with DeviationRangeLowValue, an omitted HighValue will be initialized with DeviationRangeHighValue
- For AcceptanceRange, an omitted LowValue will be initialized with ToleranceRangeLowValue, an omitted HighValue will be initialized with ToleranceRangeHighValue
</String>
</Annotation>
<Property Name="ReferenceValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Reference value for the calculation, e.g. number of sales for the last year" />
</Property>
<Property Name="IsRelativeDifference" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Calculate with a relative difference" />
</Property>
<Property Name="ImprovementDirection" Type="UI.ImprovementDirectionType" Nullable="false">
<Annotation Term="Core.Description" String="Describes in which direction the value improves" />
</Property>
<Property Name="ConstantThresholds" Type="Collection(UI.LevelThresholdsType)" Nullable="false">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="List of thresholds depending on the aggregation level as a set of constant values" />
<Annotation Term="Core.LongDescription" String="Constant thresholds shall only be used in order to refine constant values given for the data point overall (aggregation level with empty collection of property paths), but not if the thresholds are based on other measure elements." />
</Property>
</ComplexType>
<ComplexType Name="CriticalityThresholdsType">
<Annotation Term="Core.Description" String="Thresholds for calculating the criticality of a value" />
<Property Name="AcceptanceRangeLowValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description" String="Lowest value that is considered positive" />
</Property>
<Property Name="AcceptanceRangeHighValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description" String="Highest value that is considered positive" />
</Property>
<Property Name="ToleranceRangeLowValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description" String="Lowest value that is considered neutral" />
</Property>
<Property Name="ToleranceRangeHighValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description" String="Highest value that is considered neutral" />
</Property>
<Property Name="DeviationRangeLowValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description" String="Lowest value that is considered critical" />
</Property>
<Property Name="DeviationRangeHighValue" Type="Edm.PrimitiveType" Nullable="true">
<Annotation Term="Core.Description" String="Highest value that is considered critical" />
</Property>
</ComplexType>
<EnumType Name="ImprovementDirectionType">
<Annotation Term="Core.Description" String="Describes which direction of a value change is seen as an improvement" />
<Member Name="Minimize" Value="1">
<Annotation Term="Core.Description" String="Lower is better" />
</Member>
<Member Name="Target" Value="2">
<Annotation Term="Core.Description" String="Closer to the target is better" />
</Member>
<Member Name="Maximize" Value="3">
<Annotation Term="Core.Description" String="Higher is better" />
</Member>
</EnumType>
<ComplexType Name="LevelThresholdsType" BaseType="UI.CriticalityThresholdsType">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Thresholds for an aggregation level" />
<Property Name="AggregationLevel" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="An unordered tuple of dimensions, i.e. properties which are intended to be used for grouping in aggregating requests. In analytical UIs, e.g. an analytical chart, the aggregation level typically corresponds to the visible dimensions." />
</Property>
</ComplexType>
<EnumType Name="TrendType">
<Annotation Term="Core.Description" String="The trend of a value" />
<Member Name="StrongUp" Value="1">
<Annotation Term="Core.Description" String="Value grows strongly" />
</Member>
<Member Name="Up" Value="2">
<Annotation Term="Core.Description" String="Value grows" />
</Member>
<Member Name="Sideways" Value="3">
<Annotation Term="Core.Description" String="Value does not significantly grow or shrink" />
</Member>
<Member Name="Down" Value="4">
<Annotation Term="Core.Description" String="Value shrinks" />
</Member>
<Member Name="StrongDown" Value="5">
<Annotation Term="Core.Description" String="Value shrinks strongly" />
</Member>
</EnumType>
<ComplexType Name="TrendCalculationType">
<Annotation Term="Core.Description" String="Describes how to calculate the trend of a value" />
<Annotation Term="Core.LongDescription">
<String>
By default, the calculation is done by comparing the difference between Value and ReferenceValue to the threshold values.
If IsRelativeDifference is set, the difference of Value and ReferenceValue is divided by ReferenceValue and the relative difference is compared.
The trend is
- StrongUp if the difference is greater than or equal to StrongUpDifference
- Up if the difference is less than StrongUpDifference and greater than or equal to UpDifference
- Sideways if the difference is less than UpDifference and greater than DownDifference
- Down if the difference is greater than StrongDownDifference and lower than or equal to DownDifference
- StrongDown if the difference is lower than or equal to StrongDownDifference</String>
</Annotation>
<Property Name="ReferenceValue" Type="Edm.PrimitiveType" Nullable="false">
<Annotation Term="Core.Description" String="Reference value for the calculation, e.g. number of sales for the last year" />
</Property>
<Property Name="IsRelativeDifference" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Calculate with a relative difference" />
</Property>
<Property Name="UpDifference" Type="Edm.Decimal" Scale="variable" Nullable="false">
<Annotation Term="Core.Description" String="Threshold for Up" />
</Property>
<Property Name="StrongUpDifference" Type="Edm.Decimal" Scale="variable" Nullable="false">
<Annotation Term="Core.Description" String="Threshold for StrongUp" />
</Property>
<Property Name="DownDifference" Type="Edm.Decimal" Scale="variable" Nullable="false">
<Annotation Term="Core.Description" String="Threshold for Down" />
</Property>
<Property Name="StrongDownDifference" Type="Edm.Decimal" Scale="variable" Nullable="false">
<Annotation Term="Core.Description" String="Threshold for StrongDown" />
</Property>
</ComplexType>
<Term Name="KPI" Type="UI.KPIType" Nullable="false" AppliesTo="EntitySet EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description">
<String>A Key Performance Indicator (KPI) bundles a SelectionVariant and a DataPoint, and provides details for progressive disclosure</String>
</Annotation>
</Term>
<ComplexType Name="KPIType">
<Property Name="ID" Type="Edm.String">
<Annotation Term="Core.Description">
<String>Optional identifier to reference this instance from an external context</String>
</Annotation>
</Property>
<Property Name="ShortDescription" Type="Edm.String" Nullable="true">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Very short description" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="SelectionVariant" Type="UI.SelectionVariantType" Nullable="false">
<Annotation Term="Core.Description" String="Selection variant, either specified inline or referencing another annotation via Path" />
</Property>
<Property Name="DataPoint" Type="UI.DataPointType" Nullable="false">
<Annotation Term="Core.Description" String="Data point, either specified inline or referencing another annotation via Path" />
</Property>
<Property Name="AdditionalDataPoints" Type="Collection(UI.DataPointType)" Nullable="false">
<Annotation Term="Core.Description" String="Additional data points, either specified inline or referencing another annotation via Path" />
<Annotation Term="Core.LongDescription" String="Additional data points are typically related to the main data point and provide complementing information or could be used for comparisons" />
</Property>
<Property Name="Detail" Type="UI.KPIDetailType">
<Annotation Term="Core.Description" String="Contains information about KPI details, especially drill-down presentations" />
</Property>
</ComplexType>
<ComplexType Name="KPIDetailType">
<Property Name="DefaultPresentationVariant" Type="UI.PresentationVariantType">
<Annotation Term="Core.Description" String="Presentation variant, either specified inline or referencing another annotation via Path" />
</Property>
<Property Name="AlternativePresentationVariants" Type="Collection(UI.PresentationVariantType)" Nullable="false">
<Annotation Term="Core.Description" String="A list of alternative presentation variants, either specified inline or referencing another annotation via Path" />
</Property>
<Property Name="SemanticObject" Type="Edm.String">
<Annotation Term="Core.Description" String="Name of the Semantic Object. If not specified, use Semantic Object annotated at the property referenced in KPI/DataPoint/Value" />
</Property>
<Property Name="Action" Type="Edm.String">
<Annotation Term="Core.Description" String="Name of the Action on the Semantic Object. If not specified, let user choose which of the available actions to trigger." />
</Property>
</ComplexType>
<Term Name="Chart" Type="UI.ChartDefinitionType" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Visualization of multiple data points" />
</Term>
<ComplexType Name="ChartDefinitionType">
<Property Name="Title" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Title of the chart" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="Description" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Short description" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="ChartType" Type="UI.ChartType" Nullable="false">
<Annotation Term="Core.Description" String="Chart type" />
</Property>
<Property Name="AxisScaling" Type="UI.ChartAxisScalingType" Nullable="true">
<Annotation Term="Core.Description" String="Describes the scale of the chart value axes" />
</Property>
<Property Name="Measures" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Common.PrimitivePropertyPath" />
<Annotation Term="Core.Description" String="Measures of the chart, e.g. size and color in a bubble chart" />
</Property>
<Property Name="DynamicMeasures" Type="Collection(Edm.AnnotationPath)" Nullable="false">
<Annotation Term="Core.Description" String="Dynamic properties introduced by annotations and used as measures of the chart" />
<Annotation Term="Core.LongDescription">
<String>If the annotation referenced by an annotation path does not apply to the same collection of entities
as the one being visualized according to the `UI.Chart` annotation, the annotation path MUST be silently ignored.</String>
</Annotation>
<Annotation Term="Validation.AllowedTerms">
<Collection>
<String>Analytics.AggregatedProperty</String>
<String>Aggregation.CustomAggregate</String>
</Collection>
</Annotation>
</Property>
<Property Name="MeasureAttributes" Type="Collection(UI.ChartMeasureAttributeType)" Nullable="false">
<Annotation Term="Core.Description">
<String>Describes Attributes for Measures. All Measures used in this collection must also be part of the Measures Property.</String>
</Annotation>
</Property>
<Property Name="Dimensions" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="Dimensions of the chart, e.g. x- and y-axis of a bubble chart" />
</Property>
<Property Name="DimensionAttributes" Type="Collection(UI.ChartDimensionAttributeType)" Nullable="false">
<Annotation Term="Core.Description">
<String>Describes Attributes for Dimensions. All Dimensions used in this collection must also be part of the Dimensions Property.</String>
</Annotation>
</Property>
<Property Name="Actions" Type="Collection(UI.DataFieldAbstract)" Nullable="false">
<Annotation Term="Core.Description" String="Available actions and action groups" />
<Annotation Term="Validation.DerivedTypeConstraint">
<Collection>
<String>UI.DataFieldForActionAbstract</String>
<String>UI.DataFieldForActionGroup</String>
</Collection>
</Annotation>
</Property>
</ComplexType>
<EnumType Name="ChartType">
<Member Name="Column" />
<Member Name="ColumnStacked" />
<Member Name="ColumnDual" />
<Member Name="ColumnStackedDual" />
<Member Name="ColumnStacked100" />
<Member Name="ColumnStackedDual100" />
<Member Name="Bar" />
<Member Name="BarStacked" />
<Member Name="BarDual" />
<Member Name="BarStackedDual" />
<Member Name="BarStacked100" />
<Member Name="BarStackedDual100" />
<Member Name="Area" />
<Member Name="AreaStacked" />
<Member Name="AreaStacked100" />
<Member Name="HorizontalArea" />
<Member Name="HorizontalAreaStacked" />
<Member Name="HorizontalAreaStacked100" />
<Member Name="Line" />
<Member Name="LineDual" />
<Member Name="Combination" />
<Member Name="CombinationStacked" />
<Member Name="CombinationDual" />
<Member Name="CombinationStackedDual" />
<Member Name="HorizontalCombinationStacked" />
<Member Name="Pie" />
<Member Name="Donut" />
<Member Name="Scatter" />
<Member Name="Bubble" />
<Member Name="Radar" />
<Member Name="HeatMap" />
<Member Name="TreeMap" />
<Member Name="Waterfall" />
<Member Name="Bullet" />
<Member Name="VerticalBullet" />
<Member Name="HorizontalWaterfall" />
<Member Name="HorizontalCombinationDual" />
<Member Name="HorizontalCombinationStackedDual" />
<Member Name="Donut100">
<Annotation Term="Common.Experimental" />
</Member>
<!-- Future: GeoPie, GeoBubble, ChoroplethMap -->
</EnumType>
<ComplexType Name="ChartAxisScalingType">
<Property Name="ScaleBehavior" Type="UI.ChartAxisScaleBehaviorType" DefaultValue="AutoScale" Nullable="false">
<Annotation Term="Core.Description" String="Scale is fixed or adapts automatically to rendered values" />
</Property>
<Property Name="AutoScaleBehavior" Type="UI.ChartAxisAutoScaleBehaviorType">
<Annotation Term="Core.Description" String="Settings for automatic scaling" />
</Property>
<Property Name="FixedScaleMultipleStackedMeasuresBoundaryValues" Type="UI.FixedScaleMultipleStackedMeasuresBoundaryValuesType">
<Annotation Term="Core.Description" String="Boundary values for fixed scaling of a stacking chart type with multiple measures" />
</Property>
</ComplexType>
<EnumType Name="ChartAxisScaleBehaviorType">
<Member Name="AutoScale">
<Annotation Term="Core.Description" String="Value axes scale automatically" />
</Member>
<Member Name="FixedScale">
<Annotation Term="Core.Description">
<String>Fixed minimum and maximum values are applied, which are derived from the @UI.MeasureAttributes.DataPoint/MinimumValue and .../MaximumValue annotation by default.
For stacking chart types with multiple measures, they are taken from ChartAxisScalingType/FixedScaleMultipleStackedMeasuresBoundaryValues.
</String>
</Annotation>
</Member>
</EnumType>
<ComplexType Name="ChartAxisAutoScaleBehaviorType">
<Property Name="ZeroAlwaysVisible" Type="Edm.Boolean" DefaultValue="true" Nullable="false">
<Annotation Term="Core.Description" String="Forces the value axis to always display the zero value" />
</Property>
<Property Name="DataScope" Type="UI.ChartAxisAutoScaleDataScopeType" DefaultValue="DataSet" Nullable="false">
<Annotation Term="Core.Description" String="Determines the automatic scaling" />
</Property>
</ComplexType>
<EnumType Name="ChartAxisAutoScaleDataScopeType">
<Member Name="DataSet">
<Annotation Term="Core.Description" String="Minimum and maximum axes values are determined from the entire data set" />
</Member>
<Member Name="VisibleData">
<Annotation Term="Core.Description" String="Minimum and maximum axes values are determined from the currently visible data. Scrolling will change the scale." />
</Member>
</EnumType>
<ComplexType Name="FixedScaleMultipleStackedMeasuresBoundaryValuesType">
<Property Name="MinimumValue" Type="Edm.Decimal" Scale="variable" Nullable="false">
<Annotation Term="Core.Description" String="Minimum value on value axes" />
</Property>
<Property Name="MaximumValue" Type="Edm.Decimal" Scale="variable" Nullable="false">
<Annotation Term="Core.Description" String="Maximum value on value axes" />
</Property>
</ComplexType>
<ComplexType Name="ChartDimensionAttributeType">
<Property Name="Dimension" Type="Edm.PropertyPath" />
<Property Name="Role" Type="UI.ChartDimensionRoleType" />
<Property Name="HierarchyLevel" Type="Edm.Int32">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="For a dimension with a hierarchy, members are selected from this level. The root node of the hierarchy is at level 0." />
</Property>
<Property Name="ValuesForSequentialColorLevels" Type="Collection(Edm.String)" Nullable="false">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="All values in this collection should be assigned to levels of the same color." />
</Property>
<Property Name="EmphasizedValues" Type="Collection(Edm.String)" Nullable="false">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="All values in this collection should be emphasized." />
</Property>
<Property Name="EmphasisLabels" Type="UI.EmphasisLabelType" Nullable="true">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Assign a label to values with an emphasized representation. This is required, if more than one emphasized value has been specified." />
</Property>
</ComplexType>
<ComplexType Name="ChartMeasureAttributeType">
<Annotation Term="Core.Description" String="Exactly one of `Measure` and `DynamicMeasure` must be present" />
<Property Name="Measure" Type="Edm.PropertyPath">
<Annotation Term="Common.PrimitivePropertyPath" />
</Property>
<Property Name="DynamicMeasure" Type="Edm.AnnotationPath">
<Annotation Term="Core.Description" String="Dynamic property introduced by an annotation and used as a measure in a chart" />
<Annotation Term="Core.LongDescription">
<String>If the annotation referenced by an annotation path does not apply to the same collection of entities
as the one being visualized according to the `UI.Chart` annotation, the annotation path MUST be silently ignored.</String>
</Annotation>
<Annotation Term="Validation.AllowedTerms">
<Collection>
<String>Analytics.AggregatedProperty</String>
<String>Aggregation.CustomAggregate</String>
</Collection>
</Annotation>
</Property>
<Property Name="Role" Type="UI.ChartMeasureRoleType" />
<Property Name="DataPoint" Type="Edm.AnnotationPath">
<Annotation Term="Core.Description" String="Annotation path MUST end in @UI.DataPoint and the data point's Value MUST be the same property as in Measure" />
<Annotation Term="Validation.AllowedTerms">
<Collection>
<String>UI.DataPoint</String>
</Collection>
</Annotation>
</Property>
<Property Name="UseSequentialColorLevels" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="All measures for which this setting is true should be assigned to levels of the same color." />
</Property>
</ComplexType>
<EnumType Name="ChartDimensionRoleType">
<Member Name="Category" />
<Member Name="Series" />
<Member Name="Category2" />
</EnumType>
<EnumType Name="ChartMeasureRoleType">
<Member Name="Axis1" />
<Member Name="Axis2" />
<Member Name="Axis3" />
</EnumType>
<ComplexType Name="EmphasisLabelType">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Assigns a label to the set of emphasized values and optionally also for non-emphasized values. This information can be used for semantic coloring." />
<Property Name="EmphasizedValuesLabel" Type="Edm.String" Nullable="false" />
<Property Name="NonEmphasizedValuesLabel" Type="Edm.String" Nullable="true" />
</ComplexType>
<Term Name="ValueCriticality" Type="Collection(UI.ValueCriticalityType)" Nullable="false" AppliesTo="Property TypeDefinition">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Assign criticalities to primitive values. This information can be used for semantic coloring." />
</Term>
<ComplexType Name="ValueCriticalityType">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Assigns a fixed criticality to a primitive value. This information can be used for semantic coloring." />
<Property Name="Value" Type="Edm.PrimitiveType">
<Annotation Term="Core.Description" String="MUST be a fixed value of primitive type" />
</Property>
<Property Name="Criticality" Type="UI.CriticalityType" />
</ComplexType>
<Term Name="CriticalityLabels" Type="Collection(UI.CriticalityLabelType)" Nullable="false" AppliesTo="Property EntityType TypeDefinition">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description">
<String>
Assign labels to criticalities. This information can be used for semantic coloring.
When applied to a property, a label for a criticality must be provided, if more than one value of the annotated property has been assigned to the same criticality.
There must be no more than one label per criticality.
</String>
</Annotation>
</Term>
<ComplexType Name="CriticalityLabelType">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Assigns a label to a criticality. This information can be used for semantic coloring." />
<Property Name="Criticality" Type="UI.CriticalityType" Nullable="false" />
<Property Name="Label" Type="Edm.String" Nullable="false">
<Annotation Term="Core.IsLanguageDependent" />
<Annotation Term="Core.Description" String="Criticality label" />
</Property>
</ComplexType>
<Term Name="SelectionFields" Type="Collection(Edm.PropertyPath)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="UI.ThingPerspective" />
<Annotation Term="Core.Description" String="Properties that might be relevant for filtering a collection of entities of this type" />
</Term>
<!-- Segmentation of content according to facets of the Object -->
<Term Name="Facets" Type="Collection(UI.Facet)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Collection of facets" />
</Term>
<Term Name="HeaderFacets" Type="Collection(UI.Facet)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Facets for additional object header information" />
</Term>
<Term Name="QuickViewFacets" Type="Collection(UI.Facet)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Facets that may be used for a quick overview of the object" />
</Term>
<Term Name="QuickCreateFacets" Type="Collection(UI.Facet)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Facets that may be used for a (quick) create of the object" />
</Term>
<Term Name="FilterFacets" Type="Collection(UI.ReferenceFacet)" Nullable="false" AppliesTo="EntityType">
<Annotation Term="Core.Description" String="Facets that reference UI.FieldGroup annotations to group filterable fields" />
</Term>
<Term Name="OperationParameterFacets" Type="Collection(UI.ReferenceFacet)" Nullable="false" AppliesTo="Action Function ActionImport FunctionImport">
<Annotation Term="Common.Experimental" />
<Annotation Term="Core.Description" String="Facets that reference UI.FieldGroup annotations to group action or function parameters" />
</Term>