-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathOrg.OData.Capabilities.V1.xml
1136 lines (1070 loc) · 75.6 KB
/
Org.OData.Capabilities.V1.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"?>
<!--
Technical Committee:
OASIS Open Data Protocol (OData) TC
https://www.oasis-open.org/committees/odata
Chairs:
- Ralf Handl (ralf.handl@sap.com), SAP SE
- Ram Jeyaraman (Ram.Jeyaraman@microsoft.com), Microsoft
Editors:
- Ralf Handl (ralf.handl@sap.com), SAP SE
- Ram Jeyaraman (Ram.Jeyaraman@microsoft.com), Microsoft
- Michael Pizzo (mikep@microsoft.com), Microsoft
Additional artifacts:
This vocabulary is one component of a Work Product that also includes the following vocabulary components:
- OData Core Vocabulary. Latest version: https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml.
- OData Measures Vocabulary. Latest version: https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Measures.V1.xml.
- OData Capabilities Vocabulary. Latest version: https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml.
- OData Validation Vocabulary. Latest version: https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Validation.V1.xml.
- OData Aggregation Vocabulary. Latest version: https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Aggregation.V1.xml.
- OData Authorization Vocabulary. Latest version: https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Authorization.V1.xml.
Related work:
This vocabulary replaces or supersedes:
- OData Version 4.0 Vocabulary components: OData Capabilities Vocabulary.
This vocabulary is related to:
- OData Version 4.01 Part 1: Protocol. Latest version: http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part1-protocol.html.
- OData Version 4.01 Part 2: URL Conventions. Latest version: http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html.
- OData Common Schema Definition Language (CSDL) JSON Representation Version 4.01. Latest version: http://docs.oasis-open.org/odata/odata-csdl-json/v4.01/odata-csdl-json-v4.01.html.
- OData Common Schema Definition Language (CSDL) XML Representation Version 4.01. Latest version: http://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/odata-csdl-xml-v4.01.html.
- OData JSON Format Version 4.01. Latest version: http://docs.oasis-open.org/odata/odata-json-format/v4.01/odata-json-format-v4.01.html.
- OData Extension for Data Aggregation Version 4.0. Latest version: http://docs.oasis-open.org/odata/odata-data-aggregation-ext/v4.0/odata-data-aggregation-ext-v4.0.html.
Abstract:
This document contains terms describing capabilities of an OData service.
-->
<edmx:Edmx xmlns:edmx="http://docs.oasis-open.org/odata/ns/edmx" Version="4.0">
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Authorization.V1.xml">
<edmx:Include Alias="Authorization" Namespace="Org.OData.Authorization.V1" />
</edmx:Reference>
<edmx:Reference Uri="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">
<edmx:Include Alias="Core" Namespace="Org.OData.Core.V1" />
</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:DataServices>
<Schema xmlns="http://docs.oasis-open.org/odata/ns/edm" Namespace="Org.OData.Capabilities.V1" Alias="Capabilities">
<Annotation Term="Core.Description">
<String>Terms describing capabilities of a service</String>
</Annotation>
<Annotation Term="Core.Links">
<Collection>
<Record>
<PropertyValue Property="rel" String="latest-version" />
<PropertyValue Property="href" String="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.xml" />
</Record>
<Record>
<PropertyValue Property="rel" String="alternate" />
<PropertyValue Property="href" String="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Capabilities.V1.json" />
</Record>
<Record>
<PropertyValue Property="rel" String="describedby" />
<PropertyValue Property="href" String="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Capabilities.V1.md" />
</Record>
</Collection>
</Annotation>
<Annotation Term="Core.LongDescription">
<String>
There are some capabilities which are strongly recommended for services to support even
though they are optional. Support for $top and $skip is a good example as
supporting these query options helps with performance of a service and are essential. Such
capabilities are assumed to be default capabilities of an OData service even in
the case that a capabilities annotation doesn’t exist. Capabilities annotations are
mainly expected to be used to explicitly specify that a service doesn’t support such
capabilities. Capabilities annotations can as well be used to declaratively
specify the support of such capabilities.
On the other hand, there are some capabilities that a service may choose to support or
not support and in varying degrees. $filter and $orderby are such good examples.
This vocabulary aims to define terms to specify support or no support for such
capabilities.
A service is assumed to support by default the following capabilities even though an
annotation doesn’t exist:
- Countability ($count)
- Client pageability ($top, $skip)
- Expandability ($expand)
- Indexability by key
- Batch support ($batch)
- Navigability of navigation properties
A service is expected to support the following capabilities. If not supported, the
service is expected to call out the restrictions using annotations:
- Filterability ($filter)
- Sortability ($orderby)
- Queryability of top level entity sets
- Query functions
A client cannot assume that a service supports certain capabilities. A client can try, but
it needs to be prepared to handle an error in case the following capabilities are not
supported:
- Insertability
- Updatability
- Deletability
</String>
</Annotation>
<!-- Conformance Level -->
<Term Name="ConformanceLevel" Type="Capabilities.ConformanceLevelType" Nullable="false" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="The conformance level achieved by this service" />
</Term>
<EnumType Name="ConformanceLevelType">
<Member Name="Minimal">
<Annotation Term="Core.Description" String="Minimal conformance level" />
</Member>
<Member Name="Intermediate">
<Annotation Term="Core.Description" String="Intermediate conformance level" />
</Member>
<Member Name="Advanced">
<Annotation Term="Core.Description" String="Advanced conformance level" />
</Member>
</EnumType>
<!-- Request Capabilities -->
<Term Name="SupportedFormats" Type="Collection(Edm.String)" Nullable="false" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Media types of supported formats, including format parameters" />
<Annotation Term="Core.IsMediaType" />
</Term>
<Term Name="SupportedMetadataFormats" Type="Collection(Edm.String)" Nullable="false" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Media types of supported formats for $metadata, including format parameters" />
<Annotation Term="Core.IsMediaType" />
</Term>
<Term Name="AcceptableEncodings" Type="Collection(Edm.String)" Nullable="false" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="List of acceptable compression methods for ($batch) requests, e.g. gzip" />
</Term>
<!-- Supported Preferences -->
<Term Name="AsynchronousRequestsSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Service supports the asynchronous request preference" />
</Term>
<Term Name="BatchContinueOnErrorSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Service supports the continue on error preference. Supports $batch requests. Services that apply the BatchContinueOnErrorSupported term should also specify the ContinueOnErrorSupported property from the BatchSupport term." />
</Term>
<Term Name="IsolationSupported" Type="Capabilities.IsolationLevel" Nullable="false" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Supported odata.isolation levels" />
</Term>
<EnumType Name="IsolationLevel" IsFlags="true">
<Member Name="Snapshot" Value="1">
<Annotation Term="Core.Description" String="All data returned for a request, including multiple requests within a batch or results retrieved across multiple pages, will be consistent as of a single point in time" />
</Member>
</EnumType>
<Term Name="CrossJoinSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Supports cross joins for the entity sets in this container" />
</Term>
<Term Name="CallbackSupported" Type="Capabilities.CallbackType" Nullable="false" AppliesTo="EntityContainer EntitySet">
<Annotation Term="Core.Description" String="Supports callbacks for the specified protocols" />
</Term>
<ComplexType Name="CallbackType">
<Property Name="CallbackProtocols" Type="Collection(Capabilities.CallbackProtocol)" Nullable="false">
<Annotation Term="Core.Description" String="List of supported callback protocols, e.g. `http` or `wss`" />
</Property>
<Annotation Term="Core.Description" String="A non-empty collection lists the full set of supported protocols. A empty collection means 'only HTTP is supported'" />
</ComplexType>
<ComplexType Name="CallbackProtocol">
<Property Name="Id" Type="Edm.String">
<Annotation Term="Core.Description" String="Protocol Identifier" />
</Property>
<Property Name="UrlTemplate" Type="Edm.String">
<Annotation Term="Core.Description" String="URL Template including parameters. Parameters are enclosed in curly braces {} as defined in RFC6570" />
</Property>
<Property Name="DocumentationUrl" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Human readable description of the meaning of the URL Template parameters" />
<Annotation Term="Core.IsURL" />
</Property>
</ComplexType>
<Term Name="ChangeTracking" Type="Capabilities.ChangeTrackingType" Nullable="false" AppliesTo="EntitySet Singleton Function FunctionImport NavigationProperty">
<Annotation Term="Core.Description" String="Change tracking capabilities of this service or entity set" />
</Term>
<ComplexType Name="ChangeTrackingBase">
<Property Name="Supported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="odata.track-changes preference is supported" />
</Property>
</ComplexType>
<ComplexType Name="ChangeTrackingType" BaseType="Capabilities.ChangeTrackingBase">
<Property Name="FilterableProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="Change tracking supports filters on these properties" />
<Annotation Term="Core.LongDescription" String="If no properties are specified or FilterableProperties is omitted, clients cannot assume support for filtering on any properties in combination with change tracking." />
</Property>
<Property Name="ExpandableProperties" Type="Collection(Edm.NavigationPropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="Change tracking supports these properties expanded" />
<Annotation Term="Core.LongDescription" String="If no properties are specified or ExpandableProperties is omitted, clients cannot assume support for expanding any properties in combination with change tracking." />
</Property>
</ComplexType>
<!--Query Capabilities -->
<Term Name="CountRestrictions" Type="Capabilities.CountRestrictionsType" Nullable="false" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on /$count path suffix and $count=true system query option" />
</Term>
<ComplexType Name="CountRestrictionsBase">
<Property Name="Countable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Instances can be counted in requests targeting a collection" />
</Property>
</ComplexType>
<ComplexType Name="CountRestrictionsType" BaseType="Capabilities.CountRestrictionsBase">
<Property Name="NonCountableProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="Members of these collection properties cannot be counted" />
</Property>
<Property Name="NonCountableNavigationProperties" Type="Collection(Edm.NavigationPropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="Members of these navigation properties cannot be counted" />
</Property>
</ComplexType>
<Term Name="NavigationRestrictions" Type="Capabilities.NavigationRestrictionsType" Nullable="false" AppliesTo="EntitySet Singleton Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on navigating properties according to OData URL conventions" />
<Annotation Term="Core.LongDescription" String="Restrictions specified on an entity set are valid whether the request is directly to the entity set or through a navigation property bound to that entity set. Services can specify a different set of restrictions specific to a path, in which case the more specific restrictions take precedence." />
</Term>
<ComplexType Name="NavigationRestrictionsType">
<Property Name="Navigability" Type="Capabilities.NavigationType">
<Annotation Term="Core.Description" String="Default navigability for all navigation properties of the annotation target. Individual navigation properties can override this value via `RestrictedProperties/Navigability`." />
</Property>
<Property Name="RestrictedProperties" Type="Collection(Capabilities.NavigationPropertyRestriction)" Nullable="false">
<Annotation Term="Core.Description" String="List of navigation properties with restrictions" />
</Property>
</ComplexType>
<ComplexType Name="NavigationPropertyRestriction">
<Annotation Term="Core.LongDescription">
<String>Using a property of `NavigationPropertyRestriction` in a [`NavigationRestrictions`](#NavigationRestrictions) annotation
is discouraged in favor of using an annotation with the corresponding term from this vocabulary and a target path starting with a container and ending in the `NavigationProperty`,
unless the favored alternative is impossible because a dynamic expression requires an instance path whose evaluation
starts at the target of the `NavigationRestrictions` annotation. See [this example](../examples/Org.OData.Capabilities.V1.capabilities.md).</String>
</Annotation>
<Property Name="NavigationProperty" Type="Edm.NavigationPropertyPath" Nullable="false">
<Annotation Term="Core.Description" String="Navigation properties can be navigated" />
<Annotation Term="Core.LongDescription">
<String>The target path of a [`NavigationRestrictions`](#NavigationRestrictions) annotation followed by this
navigation property path addresses the resource to which the other properties of `NavigationPropertyRestriction` apply.
Instance paths that occur in dynamic expressions are evaluated starting at the boundary between both paths,
which must therefore be chosen accordingly.</String>
</Annotation>
</Property>
<Property Name="Navigability" Type="Capabilities.NavigationType">
<Annotation Term="Core.Description" String="Supported navigability of this navigation property" />
</Property>
<Property Name="FilterFunctions" Type="Collection(Edm.String)" Nullable="false">
<Annotation Term="Core.Description" String="List of functions and operators supported in filter expressions" />
<Annotation Term="Core.LongDescription" String="If not specified, null, or empty, all functions and operators may be attempted." />
</Property>
<Property Name="FilterRestrictions" Type="Capabilities.FilterRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on filter expressions" />
</Property>
<Property Name="SearchRestrictions" Type="Capabilities.SearchRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on search expressions" />
</Property>
<Property Name="SortRestrictions" Type="Capabilities.SortRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on orderby expressions" />
</Property>
<Property Name="TopSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Supports $top" />
</Property>
<Property Name="SkipSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Supports $skip" />
</Property>
<Property Name="SelectSupport" Type="Capabilities.SelectSupportType">
<Annotation Term="Core.Description" String="Support for $select" />
</Property>
<Property Name="IndexableByKey" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Supports key values according to OData URL conventions" />
</Property>
<Property Name="InsertRestrictions" Type="Capabilities.InsertRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on insert operations" />
</Property>
<Property Name="DeepInsertSupport" Type="Capabilities.DeepInsertSupportType">
<Annotation Term="Core.Description" String="Deep Insert Support of the annotated resource (the whole service, an entity set, or a collection-valued resource)" />
</Property>
<Property Name="UpdateRestrictions" Type="Capabilities.UpdateRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on update operations" />
</Property>
<Property Name="DeepUpdateSupport" Type="Capabilities.DeepUpdateSupportType">
<Annotation Term="Core.Description" String="Deep Update Support of the annotated resource (the whole service, an entity set, or a collection-valued resource)" />
</Property>
<Property Name="DeleteRestrictions" Type="Capabilities.DeleteRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on delete operations" />
</Property>
<Property Name="OptimisticConcurrencyControl" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Data modification (including insert) along this navigation property requires the use of ETags" />
</Property>
<Property Name="ReadRestrictions" Type="Capabilities.ReadRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions for retrieving entities" />
</Property>
</ComplexType>
<EnumType Name="NavigationType">
<Member Name="Recursive">
<Annotation Term="Core.Description" String="Navigation properties can be recursively navigated" />
</Member>
<Member Name="Single">
<Annotation Term="Core.Description" String="Navigation properties can be navigated to a single level" />
</Member>
<Member Name="None">
<Annotation Term="Core.Description" String="Navigation properties are not navigable" />
</Member>
</EnumType>
<Term Name="IndexableByKey" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Supports key values according to OData URL conventions" />
</Term>
<Term Name="TopSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Supports $top" />
</Term>
<Term Name="SkipSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Supports $skip" />
</Term>
<Term Name="ComputeSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Supports $compute" />
</Term>
<Term Name="SelectSupport" Type="Capabilities.SelectSupportType" Nullable="false" AppliesTo="EntityContainer EntitySet Singleton Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Support for $select and nested query options within $select" />
</Term>
<ComplexType Name="SelectSupportType">
<Property Name="Supported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Supports $select" />
</Property>
<Property Name="InstanceAnnotationsSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Supports instance annotations in $select list" />
</Property>
<Property Name="Expandable" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$expand within $select is supported" />
</Property>
<Property Name="Filterable" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$filter within $select is supported" />
</Property>
<Property Name="Searchable" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$search within $select is supported" />
</Property>
<Property Name="TopSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$top within $select is supported" />
</Property>
<Property Name="SkipSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$skip within $select is supported" />
</Property>
<Property Name="ComputeSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$compute within $select is supported" />
</Property>
<Property Name="Countable" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$count within $select is supported" />
</Property>
<Property Name="Sortable" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$orderby within $select is supported" />
</Property>
</ComplexType>
<Term Name="BatchSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Supports $batch requests. Services that apply the BatchSupported term should also apply the more comprehensive BatchSupport term." />
</Term>
<Term Name="BatchSupport" Type="Capabilities.BatchSupportType" Nullable="false" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Batch Support for the service" />
</Term>
<ComplexType Name="BatchSupportType">
<Annotation Term="Validation.ApplicableTerms">
<Collection>
<String>Core.Description</String>
<String>Core.LongDescription</String>
</Collection>
</Annotation>
<Property Name="Supported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Service supports requests to $batch" />
</Property>
<Property Name="ContinueOnErrorSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Service supports the continue on error preference" />
</Property>
<Property Name="ReferencesInRequestBodiesSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Service supports Content-ID referencing in request bodies" />
</Property>
<Property Name="ReferencesAcrossChangeSetsSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Service supports Content-ID referencing across change sets" />
</Property>
<Property Name="EtagReferencesSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Service supports referencing Etags from previous requests" />
</Property>
<Property Name="RequestDependencyConditionsSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Service supports the `if` member in JSON batch requests" />
</Property>
<Property Name="SupportedFormats" Type="Collection(Edm.String)" Nullable="false">
<Annotation Term="Core.Description" String="Media types of supported formats for $batch" />
<Annotation Term="Core.IsMediaType" />
<Annotation Term="Validation.AllowedValues">
<Collection>
<Record>
<PropertyValue Property="Value" String="multipart/mixed" />
<Annotation Term="Core.Description" String="[Multipart Batch Format](http://docs.oasis-open.org/odata/odata/v4.01/cs01/part1-protocol/odata-v4.01-cs01-part1-protocol.html#sec_MultipartBatchFormat)" />
</Record>
<Record>
<PropertyValue Property="Value" String="application/json" />
<Annotation Term="Core.Description" String="[JSON Batch Format](http://docs.oasis-open.org/odata/odata-json-format/v4.01/cs01/odata-json-format-v4.01-cs01.html#sec_BatchRequestsandResponses)" />
</Record>
</Collection>
</Annotation>
</Property>
</ComplexType>
<Term Name="FilterFunctions" Type="Collection(Edm.String)" Nullable="false" AppliesTo="EntityContainer EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="List of functions and operators supported in filter expressions" />
<Annotation Term="Core.LongDescription" String="If not specified, null, or empty, all functions and operators may be attempted." />
</Term>
<Term Name="FilterRestrictions" Type="Capabilities.FilterRestrictionsType" Nullable="false" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on filter expressions" />
</Term>
<ComplexType Name="FilterRestrictionsBase">
<Annotation Term="Validation.ApplicableTerms">
<Collection>
<String>Core.Description</String>
</Collection>
</Annotation>
<Property Name="Filterable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="$filter is supported" />
</Property>
<Property Name="RequiresFilter" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$filter is required" />
</Property>
<Property Name="MaxLevels" Type="Edm.Int32" Nullable="false" DefaultValue="-1">
<Annotation Term="Core.Description" String="The maximum number of levels (including recursion) that can be traversed in a filter expression. A value of -1 indicates there is no restriction." />
</Property>
</ComplexType>
<ComplexType Name="FilterRestrictionsType" BaseType="Capabilities.FilterRestrictionsBase">
<Property Name="RequiredProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These properties must be specified in the $filter clause (properties of derived types are not allowed here)" />
</Property>
<Property Name="NonFilterableProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These structural properties cannot be used in filter expressions" />
</Property>
<Property Name="FilterExpressionRestrictions" Type="Collection(Capabilities.FilterExpressionRestrictionType)" Nullable="false">
<Annotation Term="Core.Description" String="These properties only allow a subset of filter expressions. A valid filter expression for a single property can be enclosed in parentheses and combined by `and` with valid expressions for other properties." />
</Property>
</ComplexType>
<ComplexType Name="FilterExpressionRestrictionType">
<Property Name="Property" Type="Edm.PropertyPath">
<Annotation Term="Core.Description" String="Path to the restricted property" />
</Property>
<Property Name="AllowedExpressions" Type="Capabilities.FilterExpressionType">
<Annotation Term="Core.Description" String="Allowed subset of expressions" />
</Property>
</ComplexType>
<TypeDefinition Name="FilterExpressionType" UnderlyingType="Edm.String">
<Annotation Term="Validation.AllowedValues">
<Collection>
<Record>
<PropertyValue Property="Value" String="SingleValue" />
<Annotation Term="Core.Description" String="Property can be used in a single `eq` clause" />
</Record>
<Record>
<PropertyValue Property="Value" String="MultiValue" />
<Annotation Term="Core.Description" String="Property can be used in multiple `eq` and `in` clauses, combined by `or` (which is logically equivalent to a single `in` clause)" />
</Record>
<Record>
<PropertyValue Property="Value" String="SingleRange" />
<Annotation Term="Core.Description" String="Property can be compared to a single closed, half-open, or open interval" />
<Annotation Term="Core.LongDescription" String="The filter expression for this property consists of a single interval expression, which is either a single comparison of the property and a literal value with `eq`, `le`, `lt`, `ge`, or `gt`, or a pair of boundaries combined by `and`. The lower boundary is either `ge` or `gt`, the upper boundary either `le` or `lt`." />
</Record>
<Record>
<PropertyValue Property="Value" String="MultiRange" />
<Annotation Term="Core.Description" String="Property can be compared to a union of one or more closed, half-open, or open intervals" />
<Annotation Term="Core.LongDescription">
<String>The filter expression for this property consists of one or more interval expressions, combined by `or`. See SingleRange for the definition of an interval expression.
Alternatively the filter expression can consist of one or more `ne` expressions combined by `and`, which is roughly equivalent to the union of the complementing open intervals. Roughly equivalent because `null` is allowed as a right-side operand of an `ne` expression.</String>
</Annotation>
</Record>
<Record>
<PropertyValue Property="Value" String="SearchExpression" />
<Annotation Term="Core.Description" String="String property can be used as first operand in `startswith`, `endswith`, and `contains` clauses" />
</Record>
<Record>
<PropertyValue Property="Value" String="MultiRangeOrSearchExpression" />
<Annotation Term="Core.Description" String="Property can be compared to a union of zero or more closed, half-open, or open intervals plus zero or more simple string patterns" />
<Annotation Term="Core.LongDescription" String="The filter expression for this property consists of one or more interval expressions or string comparison functions combined by `or`. See SingleRange for the definition of an interval expression. See SearchExpression for the allowed string comparison functions." />
</Record>
</Collection>
</Annotation>
</TypeDefinition>
<Term Name="SortRestrictions" Type="Capabilities.SortRestrictionsType" Nullable="false" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on orderby expressions" />
</Term>
<ComplexType Name="SortRestrictionsBase">
<Annotation Term="Validation.ApplicableTerms">
<Collection>
<String>Core.Description</String>
</Collection>
</Annotation>
<Property Name="Sortable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="$orderby is supported" />
</Property>
</ComplexType>
<ComplexType Name="SortRestrictionsType" BaseType="Capabilities.SortRestrictionsBase">
<Property Name="AscendingOnlyProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These properties can only be used for sorting in Ascending order" />
</Property>
<Property Name="DescendingOnlyProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These properties can only be used for sorting in Descending order" />
</Property>
<Property Name="NonSortableProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These structural properties cannot be used in orderby expressions" />
</Property>
</ComplexType>
<Term Name="ExpandRestrictions" Type="Capabilities.ExpandRestrictionsType" Nullable="false" AppliesTo="EntitySet Singleton Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on expand expressions" />
</Term>
<ComplexType Name="ExpandRestrictionsBase">
<Annotation Term="Validation.ApplicableTerms">
<Collection>
<String>Core.Description</String>
</Collection>
</Annotation>
<Property Name="Expandable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="$expand is supported" />
</Property>
<Property Name="StreamsExpandable" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="$expand is supported for stream properties and media streams" />
</Property>
<Property Name="MaxLevels" Type="Edm.Int32" Nullable="false" DefaultValue="-1">
<Annotation Term="Core.Description" String="The maximum number of levels that can be expanded in a expand expression. A value of -1 indicates there is no restriction." />
</Property>
</ComplexType>
<ComplexType Name="ExpandRestrictionsType" BaseType="Capabilities.ExpandRestrictionsBase">
<Property Name="NonExpandableProperties" Type="Collection(Edm.NavigationPropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These properties cannot be used in expand expressions" />
</Property>
<Property Name="NonExpandableStreamProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These stream properties cannot be used in expand expressions" />
<Annotation Term="Core.RequiresType" String="Edm.Stream" />
</Property>
</ComplexType>
<Term Name="SearchRestrictions" Type="Capabilities.SearchRestrictionsType" Nullable="false" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on search expressions" />
</Term>
<ComplexType Name="SearchRestrictionsType">
<Annotation Term="Validation.ApplicableTerms">
<Collection>
<String>Core.Description</String>
</Collection>
</Annotation>
<Property Name="Searchable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="$search is supported" />
</Property>
<Property Name="UnsupportedExpressions" Type="Capabilities.SearchExpressions" Nullable="false" DefaultValue="none">
<Annotation Term="Core.Description" String="Expressions not supported in $search" />
</Property>
</ComplexType>
<EnumType Name="SearchExpressions" IsFlags="true">
<Member Name="none" Value="0">
<Annotation Term="Core.Description" String="Single search term" />
</Member>
<Member Name="AND" Value="1">
<Annotation Term="Core.Description" String="Multiple search terms, optionally separated by `AND`" />
</Member>
<Member Name="OR" Value="2">
<Annotation Term="Core.Description" String="Multiple search terms separated by `OR`" />
</Member>
<Member Name="NOT" Value="4">
<Annotation Term="Core.Description" String="Search terms preceded by `NOT`" />
</Member>
<Member Name="phrase" Value="8">
<Annotation Term="Core.Description" String="Search phrases enclosed in double quotes" />
</Member>
<Member Name="group" Value="16">
<Annotation Term="Core.Description" String="Precedence grouping of search expressions with parentheses" />
</Member>
</EnumType>
<Term Name="KeyAsSegmentSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Supports [key-as-segment convention](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_KeyasSegmentConvention) for addressing entities within a collection" />
</Term>
<Term Name="QuerySegmentSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Supports [passing query options in the request body](http://docs.oasis-open.org/odata/odata/v4.01/odata-v4.01-part2-url-conventions.html#sec_PassingQueryOptionsintheRequestBody)" />
</Term>
<!-- Data Modification Capabilities -->
<Term Name="InsertRestrictions" Type="Capabilities.InsertRestrictionsType" Nullable="false" AppliesTo="EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on insert operations" />
</Term>
<ComplexType Name="InsertRestrictionsBase">
<Property Name="Insertable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Entities can be inserted" />
</Property>
<Property Name="MaxLevels" Type="Edm.Int32" Nullable="false" DefaultValue="-1">
<Annotation Term="Core.Description" String="The maximum number of navigation properties that can be traversed when addressing the collection to insert into. A value of -1 indicates there is no restriction." />
</Property>
<Property Name="TypecastSegmentSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Entities of a specific derived type can be created by specifying a type-cast segment" />
</Property>
<Property Name="QueryOptions" Type="Capabilities.ModificationQueryOptionsType" Nullable="true">
<Annotation Term="Core.Description" String="Support for query options with insert requests" />
</Property>
<Property Name="CustomHeaders" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom headers" />
</Property>
<Property Name="CustomQueryOptions" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom query options" />
</Property>
<Property Name="Description" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="A brief description of the request" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="LongDescription" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="A long description of the request" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="ErrorResponses" Type="Collection(Capabilities.HttpResponse)" Nullable="false">
<Annotation Term="Core.Description" String="Possible error responses returned by the request." />
</Property>
</ComplexType>
<ComplexType Name="InsertRestrictionsType" BaseType="Capabilities.InsertRestrictionsBase">
<Property Name="NonInsertableProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These structural properties cannot be specified on insert" />
</Property>
<Property Name="NonInsertableNavigationProperties" Type="Collection(Edm.NavigationPropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These navigation properties do not allow deep inserts" />
</Property>
<Property Name="RequiredProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These structural properties must be specified on insert" />
</Property>
<Property Name="Permissions" Type="Collection(Capabilities.PermissionType)" Nullable="true">
<Annotation Term="Core.Description" String="Required permissions. One of the specified sets of scopes is required to perform the insert." />
</Property>
</ComplexType>
<ComplexType Name="PermissionType">
<Property Name="SchemeName" Type="Authorization.SchemeName" Nullable="false">
<Annotation Term="Core.Description" String="Authorization flow scheme name" />
</Property>
<Property Name="Scopes" Type="Collection(Capabilities.ScopeType)" Nullable="false">
<Annotation Term="Core.Description" String="List of scopes that can provide access to the resource" />
</Property>
</ComplexType>
<ComplexType Name="ScopeType">
<Property Name="Scope" Type="Edm.String" Nullable="false">
<Annotation Term="Core.Description" String="Name of the scope." />
</Property>
<Property Name="RestrictedProperties" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="Comma-separated string value of all properties that will be included or excluded when using the scope." />
<Annotation Term="Core.LongDescription">
<String>Possible string value identifiers when specifying properties are `*`, _PropertyName_, `-`_PropertyName_.
`*` denotes all properties are accessible.
`-`_PropertyName_ excludes that specific property.
_PropertyName_ explicitly provides access to the specific property.
The absence of `RestrictedProperties` denotes all properties are accessible using that scope.</String>
</Annotation>
</Property>
</ComplexType>
<Term Name="DeepInsertSupport" Type="Capabilities.DeepInsertSupportType" AppliesTo="EntityContainer EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Deep Insert Support of the annotated resource (the whole service, an entity set, or a collection-valued resource)" />
</Term>
<ComplexType Name="DeepInsertSupportType">
<Property Name="Supported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Annotation target supports deep inserts" />
</Property>
<Property Name="ContentIDSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Annotation target supports accepting and returning nested entities annotated with the `Core.ContentID` instance annotation." />
</Property>
</ComplexType>
<Term Name="UpdateRestrictions" Type="Capabilities.UpdateRestrictionsType" Nullable="false" AppliesTo="EntitySet Singleton Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on update operations" />
</Term>
<ComplexType Name="UpdateRestrictionsBase">
<Property Name="Updatable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Entities can be updated" />
</Property>
<Property Name="Upsertable" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Entities can be upserted" />
</Property>
<Property Name="DeltaUpdateSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Entities can be inserted, updated, and deleted via a PATCH request with a delta payload" />
</Property>
<Property Name="UpdateMethod" Type="Capabilities.HttpMethod" Nullable="true">
<Annotation Term="Core.Description" String="Supported HTTP Methods (PUT or PATCH) for updating an entity. If null, PATCH SHOULD be supported and PUT MAY be supported." />
</Property>
<Property Name="FilterSegmentSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Members of collections can be updated via a PATCH request with a `/$filter(...)/$each` segment" />
</Property>
<Property Name="TypecastSegmentSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Members of collections can be updated via a PATCH request with a type-cast segment and a `/$each` segment" />
</Property>
<Property Name="MaxLevels" Type="Edm.Int32" Nullable="false" DefaultValue="-1">
<Annotation Term="Core.Description" String="The maximum number of navigation properties that can be traversed when addressing the collection or entity to update. A value of -1 indicates there is no restriction." />
</Property>
<Property Name="Permissions" Type="Collection(Capabilities.PermissionType)" Nullable="true">
<Annotation Term="Core.Description" String="Required permissions. One of the specified sets of scopes is required to perform the update." />
</Property>
<Property Name="QueryOptions" Type="Capabilities.ModificationQueryOptionsType" Nullable="true">
<Annotation Term="Core.Description" String="Support for query options with update requests" />
</Property>
<Property Name="CustomHeaders" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom headers" />
</Property>
<Property Name="CustomQueryOptions" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom query options" />
</Property>
<Property Name="Description" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="A brief description of the request" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="LongDescription" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="A long description of the request" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="ErrorResponses" Type="Collection(Capabilities.HttpResponse)" Nullable="false">
<Annotation Term="Core.Description" String="Possible error responses returned by the request." />
</Property>
</ComplexType>
<ComplexType Name="UpdateRestrictionsType" BaseType="Capabilities.UpdateRestrictionsBase">
<Property Name="NonUpdatableProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These structural properties cannot be specified on update" />
</Property>
<Property Name="NonUpdatableNavigationProperties" Type="Collection(Edm.NavigationPropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These navigation properties do not allow rebinding" />
</Property>
<Property Name="RequiredProperties" Type="Collection(Edm.PropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These structural properties must be specified on update" />
</Property>
</ComplexType>
<EnumType Name="HttpMethod" IsFlags="true">
<Member Name="GET" Value="1">
<Annotation Term="Core.Description" String="The HTTP GET Method" />
</Member>
<Member Name="PATCH" Value="2">
<Annotation Term="Core.Description" String="The HTTP PATCH Method" />
</Member>
<Member Name="PUT" Value="4">
<Annotation Term="Core.Description" String="The HTTP PUT Method" />
</Member>
<Member Name="POST" Value="8">
<Annotation Term="Core.Description" String="The HTTP POST Method" />
</Member>
<Member Name="DELETE" Value="16">
<Annotation Term="Core.Description" String="The HTTP DELETE Method" />
</Member>
<Member Name="OPTIONS" Value="32">
<Annotation Term="Core.Description" String="The HTTP OPTIONS Method" />
</Member>
<Member Name="HEAD" Value="64">
<Annotation Term="Core.Description" String="The HTTP HEAD Method" />
</Member>
</EnumType>
<Term Name="DeepUpdateSupport" Type="Capabilities.DeepUpdateSupportType" Nullable="false" AppliesTo="EntityContainer EntitySet Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Deep Update Support of the annotated resource (the whole service, an entity set, or a collection-valued resource)" />
</Term>
<ComplexType Name="DeepUpdateSupportType">
<Property Name="Supported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Annotation target supports deep updates" />
</Property>
<Property Name="ContentIDSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Annotation target supports accepting and returning nested entities annotated with the `Core.ContentID` instance annotation." />
</Property>
</ComplexType>
<Term Name="DeleteRestrictions" Type="Capabilities.DeleteRestrictionsType" Nullable="false" AppliesTo="EntitySet Singleton Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions on delete operations" />
</Term>
<ComplexType Name="DeleteRestrictionsBase">
<Property Name="Deletable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Entities can be deleted" />
</Property>
<Property Name="MaxLevels" Type="Edm.Int32" Nullable="false" DefaultValue="-1">
<Annotation Term="Core.Description" String="The maximum number of navigation properties that can be traversed when addressing the collection to delete from or the entity to delete. A value of -1 indicates there is no restriction." />
</Property>
<Property Name="FilterSegmentSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Members of collections can be deleted via a DELETE request with a `/$filter(...)/$each` segment" />
</Property>
<Property Name="TypecastSegmentSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Members of collections can be deleted via a DELETE request with a type-cast segment and a `/$each` segment" />
</Property>
<Property Name="Permissions" Type="Collection(Capabilities.PermissionType)" Nullable="true">
<Annotation Term="Core.Description" String="Required permissions. One of the specified sets of scopes is required to perform the delete." />
</Property>
<Property Name="CustomHeaders" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom headers" />
</Property>
<Property Name="CustomQueryOptions" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom query options" />
</Property>
<Property Name="Description" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="A brief description of the request" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="LongDescription" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="A long description of the request" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="ErrorResponses" Type="Collection(Capabilities.HttpResponse)" Nullable="false">
<Annotation Term="Core.Description" String="Possible error responses returned by the request." />
</Property>
</ComplexType>
<ComplexType Name="DeleteRestrictionsType" BaseType="Capabilities.DeleteRestrictionsBase">
<Property Name="NonDeletableNavigationProperties" Type="Collection(Edm.NavigationPropertyPath)" Nullable="false">
<Annotation Term="Core.Description" String="These navigation properties do not allow DeleteLink requests" />
</Property>
</ComplexType>
<Term Name="CollectionPropertyRestrictions" Type="Collection(Capabilities.CollectionPropertyRestrictionsType)" Nullable="false" AppliesTo="EntitySet Singleton">
<Annotation Term="Core.Description" String="Describes restrictions on operations applied to collection-valued structural properties" />
</Term>
<ComplexType Name="CollectionPropertyRestrictionsType">
<Property Name="CollectionProperty" Type="Edm.PropertyPath">
<Annotation Term="Core.Description" String="Restricted Collection-valued property" />
</Property>
<Property Name="FilterFunctions" Type="Collection(Edm.String)" Nullable="false">
<Annotation Term="Core.Description" String="List of functions and operators supported in filter expressions" />
<Annotation Term="Core.LongDescription" String="If not specified, null, or empty, all functions and operators may be attempted." />
</Property>
<Property Name="FilterRestrictions" Type="Capabilities.FilterRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on filter expressions" />
</Property>
<Property Name="SearchRestrictions" Type="Capabilities.SearchRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on search expressions" />
</Property>
<Property Name="SortRestrictions" Type="Capabilities.SortRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions on orderby expressions" />
</Property>
<Property Name="TopSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Supports $top" />
</Property>
<Property Name="SkipSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Supports $skip" />
</Property>
<Property Name="SelectSupport" Type="Capabilities.SelectSupportType">
<Annotation Term="Core.Description" String="Support for $select" />
</Property>
<Property Name="Insertable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Members can be inserted into this collection" />
<Annotation Term="Core.LongDescription" String="If additionally annotated with [Core.PositionalInsert](Org.OData.Core.V1.md#PositionalInsert), members can be inserted at a specific position" />
</Property>
<Property Name="Updatable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Members of this ordered collection can be updated by ordinal" />
</Property>
<Property Name="Deletable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Members of this ordered collection can be deleted by ordinal" />
</Property>
</ComplexType>
<Term Name="OperationRestrictions" Type="Capabilities.OperationRestrictionsType" Nullable="false" AppliesTo="Action Function">
<Annotation Term="Core.Description" String="Restrictions for function or action operation" />
</Term>
<ComplexType Name="OperationRestrictionsType">
<Property Name="FilterSegmentSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Bound action or function can be invoked on a collection-valued binding parameter path with a `/$filter(...)` segment" />
</Property>
<Property Name="Permissions" Type="Collection(Capabilities.PermissionType)" Nullable="true">
<Annotation Term="Core.Description" String="Required permissions. One of the specified sets of scopes is required to invoke an action or function" />
</Property>
<Property Name="CustomHeaders" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom headers" />
</Property>
<Property Name="CustomQueryOptions" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom query options" />
</Property>
<Property Name="ErrorResponses" Type="Collection(Capabilities.HttpResponse)" Nullable="false">
<Annotation Term="Core.Description" String="Possible error responses returned by the request." />
</Property>
</ComplexType>
<Term Name="AnnotationValuesInQuerySupported" Type="Core.Tag" DefaultValue="true" Nullable="false" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Supports annotation values within system query options" />
</Term>
<Term Name="ModificationQueryOptions" Type="Capabilities.ModificationQueryOptionsType" Nullable="false" AppliesTo="EntityContainer Action ActionImport">
<Annotation Term="Core.Description" String="Support for query options with modification requests (insert, update, action invocation)" />
</Term>
<ComplexType Name="ModificationQueryOptionsType">
<Property Name="ExpandSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Supports $expand with modification requests" />
</Property>
<Property Name="SelectSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Supports $select with modification requests" />
</Property>
<Property Name="ComputeSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Supports $compute with modification requests" />
</Property>
<Property Name="FilterSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Supports $filter with modification requests" />
</Property>
<Property Name="SearchSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Supports $search with modification requests" />
</Property>
<Property Name="SortSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="false">
<Annotation Term="Core.Description" String="Supports $orderby with modification requests" />
</Property>
</ComplexType>
<Term Name="ReadRestrictions" Type="Capabilities.ReadRestrictionsType" Nullable="false" AppliesTo="EntitySet Singleton Collection">
<Annotation Term="Core.AppliesViaContainer" />
<Annotation Term="Core.Description" String="Restrictions for retrieving a collection of entities, retrieving a singleton instance." />
</Term>
<ComplexType Name="ReadRestrictionsBase" Abstract="true">
<Property Name="Readable" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Entities can be retrieved" />
</Property>
<Property Name="Permissions" Type="Collection(Capabilities.PermissionType)" Nullable="true">
<Annotation Term="Core.Description" String="Required permissions. One of the specified sets of scopes is required to read." />
</Property>
<Property Name="CustomHeaders" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom headers" />
</Property>
<Property Name="CustomQueryOptions" Type="Collection(Capabilities.CustomParameter)" Nullable="false">
<Annotation Term="Core.Description" String="Supported or required custom query options" />
</Property>
<Property Name="Description" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="A brief description of the request" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="LongDescription" Type="Edm.String" Nullable="true">
<Annotation Term="Core.Description" String="A long description of the request" />
<Annotation Term="Core.IsLanguageDependent" />
</Property>
<Property Name="ErrorResponses" Type="Collection(Capabilities.HttpResponse)" Nullable="false">
<Annotation Term="Core.Description" String="Possible error responses returned by the request." />
</Property>
</ComplexType>
<ComplexType Name="ReadByKeyRestrictionsType" BaseType="Capabilities.ReadRestrictionsBase">
<Annotation Term="Core.Description" String="Restrictions for retrieving an entity by key" />
</ComplexType>
<ComplexType Name="ReadRestrictionsType" BaseType="Capabilities.ReadRestrictionsBase">
<Property Name="TypecastSegmentSupported" Type="Edm.Boolean" Nullable="false" DefaultValue="true">
<Annotation Term="Core.Description" String="Entities of a specific derived type can be read by specifying a type-cast segment" />
</Property>
<Property Name="ReadByKeyRestrictions" Type="Capabilities.ReadByKeyRestrictionsType">
<Annotation Term="Core.Description" String="Restrictions for retrieving an entity by key" />
<Annotation Term="Core.LongDescription" String="Only valid when applied to a collection. If a property of `ReadByKeyRestrictions` is not specified, the corresponding property value of `ReadRestrictions` applies." />
</Property>
</ComplexType>
<Term Name="CustomHeaders" Type="Collection(Capabilities.CustomParameter)" Nullable="false" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Custom headers that are supported/required for the annotated resource" />
<Annotation Term="Core.Example">
<Record>
<Annotation Term="Capabilities.CustomHeaders">
<Collection>
<Record>
<PropertyValue Property="Name" String="X-CSRF-Token" />
<PropertyValue Property="Description" String="Token to protect against Cross-Site Request Forgery attacks" />
<PropertyValue Property="DocumentationURL" String="https://help.sap.com/viewer/68bf513362174d54b58cddec28794093/7.51.1/en-US/b35c22518bc72214e10000000a44176d.html" />
<PropertyValue Property="Required" Bool="true" />
<PropertyValue Property="ExampleValues">
<Collection>
<Record>
<PropertyValue Property="Value" String="Fetch" />
<PropertyValue Property="Description" String="Can be used on HEAD request to the service document for obtaining a new CSRF token. This token must then be sent in subsequent requests to resources of the service." />
</Record>
</Collection>
</PropertyValue>
</Record>