-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathodata-vocabularies.html
4997 lines (4987 loc) · 304 KB
/
odata-vocabularies.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<meta name="description" content="This prose specification describes a set of OData vocabularies maintained by the OASIS OData Technical Committee. These vocabulary components are continuously evolved. The latest work-in-progress revisions are available at the odata-vocabularies OASIS TC GitHub repository: https://github.com/oasis-tcs/odata-vocabularies." />
<title>OData Vocabularies Version 4.0</title>
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
/* The extra [class] is a hack that increases specificity enough to
override a similar rule in reveal.js */
ul.task-list[class]{list-style: none;}
ul.task-list li input[type="checkbox"] {
font-size: inherit;
width: 0.8em;
margin: 0 0.8em 0.2em -1.6em;
vertical-align: middle;
}
</style>
<link rel="stylesheet" href="styles/markdown-styles-v1.7.3b.css" />
<link rel="stylesheet" href="styles/odata.css" />
<script type="text/javascript">
MathJax = {startup: {
ready() {
MathJax.startup.defaultReady();
MathJax.startup.document.outputJax.font.variant.monospace.chars
[0x2019] = [.611, -.287, .525, {f: "T", c: "′"}];
}
}};
</script>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function () {
function darkmode_auto() {
if (darkmode_switch.value === "auto") {
if (darkmode_query.matches) document.documentElement.classList.add("darkmode");
else document.documentElement.classList.remove("darkmode");
}
}
function darkmode_manual() {
localStorage.setItem("odata-specs/darkmode", darkmode_switch.value);
switch (darkmode_switch.value) {
case "off":
document.documentElement.classList.remove("darkmode");
break;
case "on":
document.documentElement.classList.add("darkmode");
break;
case "auto":
darkmode_auto();
break;
}
}
const darkmode_query = matchMedia("(prefers-color-scheme: dark)");
darkmode_query.addEventListener("change", darkmode_auto);
const darkmode_switch = document.getElementById("darkmode");
darkmode_switch.value =
localStorage.getItem("odata-specs/darkmode") || "off";
darkmode_switch.addEventListener("change", darkmode_manual);
darkmode_manual();
});
</script>
<script src="https://cdnjs.cloudflare.com/polyfill/v3/polyfill.min.js?features=es6"></script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-chtml-full.js" type="text/javascript"></script>
</head>
<body>
<select id="darkmode">
<option value="off" title="Light mode">☼</option>
<option value="on" title="Dark mode">☽</option>
<option value="auto" title="Follow device mode">◑</option>
</select>
<p><img src="https://docs.oasis-open.org/templates/OASISLogo-v3.0.png" alt="OASIS Logo" /></p>
<hr />
<details open><summary>
<h1 id="odata-vocabularies-version-40">OData Vocabularies Version 4.0</h1>
</summary>
<h2>Committee Specification Draft 02</h2>
<details open><summary>
<h2 id="19-june-2024">19 June 2024</h2>
</summary>
<p><span class="math inline">\(\hbox{}\)</span></p>
<h4>This stage:</h4>
<p><a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csd02/odata-vocabularies-v4.0-csd02.md">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csd02/odata-vocabularies-v4.0-csd02.md</a> (Authoritative)<br />
<a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csd02/odata-vocabularies-v4.0-csd02.html">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csd02/odata-vocabularies-v4.0-csd02.html</a><br />
<a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csd02/odata-vocabularies-v4.0-csd02.pdf">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csd02/odata-vocabularies-v4.0-csd02.pdf</a></p>
<h4>Previous stage:</h4>
<p><a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csprd01/odata-vocabularies-v4.0-csprd01.docx">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csprd01/odata-vocabularies-v4.0-csprd01.docx</a> (Authoritative)<br />
<a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csprd01/odata-vocabularies-v4.0-csprd01.html">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csprd01/odata-vocabularies-v4.0-csprd01.html</a><br />
<a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csprd01/odata-vocabularies-v4.0-csprd01.pdf">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csprd01/odata-vocabularies-v4.0-csprd01.pdf</a></p>
<h4>Latest stage:</h4>
<p><a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/odata-vocabularies-v4.0.docx">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/odata-vocabularies-v4.0.docx</a> (Authoritative)<br />
<a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/odata-vocabularies-v4.0.html">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/odata-vocabularies-v4.0.html</a><br />
<a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/odata-vocabularies-v4.0.pdf">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/odata-vocabularies-v4.0.pdf</a></p>
<h4>Technical Committee:</h4>
<p><a href="https://www.oasis-open.org/committees/odata/">OASIS Open Data Protocol (OData) TC</a></p>
<h4>Chairs:</h4>
<p>Ralf Handl (<a href="mailto:[email protected]">[email protected]</a>), <a href="http://www.sap.com/">SAP SE</a><br />
Michael Pizzo (<a href="mailto:[email protected]">[email protected]</a>), <a href="http://www.microsoft.com/">Microsoft</a></p>
<h4>Editors:</h4>
<p>Ralf Handl (<a href="mailto:[email protected]">[email protected]</a>), <a href="http://www.sap.com/">SAP SE</a><br />
Michael Pizzo (<a href="mailto:[email protected]">[email protected]</a>), <a href="http://www.microsoft.com/">Microsoft</a><br />
Heiko Theißen (<a href="mailto:[email protected]">[email protected]</a>), <a href="http://www.sap.com/">SAP SE</a></p>
<h4><span id="RelatedWork">Related work:</span></h4>
<p>This specification is related to:</p>
<ul>
<li><em>OData Version 4.02</em>. Edited by Michael Pizzo, Ralf Handl, and Heiko Theißen. A multi-part Work Product that includes:
<ul>
<li><em>OData Version 4.02 Part 1: Protocol</em>. Latest stage. <a href="https://docs.oasis-open.org/odata/odata/v4.02/odata-v4.02-part1-protocol.html">https://docs.oasis-open.org/odata/odata/v4.02/odata-v4.02-part1-protocol.html</a></li>
<li><em>OData Version 4.02 Part 2: URL Conventions</em>. Latest stage. <a href="https://docs.oasis-open.org/odata/odata/v4.02/odata-v4.02-part2-url-conventions.html">https://docs.oasis-open.org/odata/odata/v4.02/odata-v4.02-part2-url-conventions.html</a></li>
<li><em>ABNF components: OData ABNF Construction Rules Version 4.02 and OData ABNF Test Cases</em>. <a href="https://docs.oasis-open.org/odata/odata/v4.02/csd01/abnf/">https://docs.oasis-open.org/odata/odata/v4.02/csd01/abnf/</a></li>
</ul></li>
<li><em>OData Common Schema Definition Language (CSDL) JSON Representation Version 4.02</em>. Edited by Michael Pizzo, Ralf Handl, and Heiko Theißen. Latest stage: <a href="https://docs.oasis-open.org/odata/odata-csdl-json/v4.02/odata-csdl-json-v4.02.html">https://docs.oasis-open.org/odata/odata-csdl-json/v4.02/odata-csdl-json-v4.02.html</a></li>
<li><em>OData Common Schema Definition Language (CSDL) XML Representation Version 4.02</em>. Edited by Michael Pizzo, Ralf Handl, and Heiko Theißen. Latest stage: <a href="https://docs.oasis-open.org/odata/odata-csdl-xml/v4.02/odata-csdl-xml-v4.02.html">https://docs.oasis-open.org/odata/odata-csdl-xml/v4.02/odata-csdl-xml-v4.02.html</a></li>
<li><em>OData JSON Format Version 4.02</em>. Edited by Michael Pizzo, Ralf Handl, and Heiko Theißen. Latest stage: <a href="https://docs.oasis-open.org/odata/odata-json-format/v4.02/odata-json-format-v4.02.html">https://docs.oasis-open.org/odata/odata-json-format/v4.02/odata-json-format-v4.02.html</a></li>
<li><em>OData Data Aggregation Extension Version 4.0</em>. Edited by Ralf Handl, Hubert Heijkers, Gerald Krause, Michael Pizzo, Heiko Theißen, and Martin Zurmuehl. Latest stage: <a href="https://docs.oasis-open.org/odata/odata-data-aggregation-ext/v4.0/odata-data-aggregation-ext-v4.0.html">https://docs.oasis-open.org/odata/odata-data-aggregation-ext/v4.0/odata-data-aggregation-ext-v4.0.html</a></li>
<li><em>OData Extension for Temporal Data Version 4.0</em>. Edited by Ralf Handl, Hubert Heijkers, Gerald Krause, Michael Pizzo, Heiko Theißen, and Martin Zurmuehl. Latest stage: <a href="https://docs.oasis-open.org/odata/odata-temporal-ext/v4.0/odata-temporal-ext-v4.0.html">https://docs.oasis-open.org/odata/odata-temporal-ext/v4.0/odata-temporal-ext-v4.0.html</a></li>
</ul>
<h4>Abstract:</h4>
<p>This prose specification describes a set of OData vocabularies maintained by the OASIS OData Technical Committee. These vocabulary components are continuously evolved. The latest work-in-progress revisions are available at the odata-vocabularies OASIS TC GitHub repository: <a href="https://github.com/oasis-tcs/odata-vocabularies">https://github.com/oasis-tcs/odata-vocabularies</a>.</p>
<h4>Status:</h4>
<p>This document was last revised or approved by the OASIS Open Data Protocol (OData) TC on the above date. The level of approval is also listed above. Check the “Latest stage” location noted above for possible later revisions of this document. Any other numbered Versions and other technical work produced by the Technical Committee (TC) are listed at <a href="https://groups.oasis-open.org/communities/tc-community-home2?CommunityKey=e7cac2a9-2d18-4640-b94d-018dc7d3f0e2#technical">https://groups.oasis-open.org/communities/tc-community-home2?CommunityKey=e7cac2a9-2d18-4640-b94d-018dc7d3f0e2#technical</a>.</p>
<p>TC members should send comments on this specification to the TC’s email list. Any individual may submit comments to the TC by sending email to <a href="mailto:[email protected]">[email protected]</a>. Please use a Subject line like “Comment on OData Vocabularies”.</p>
<p>This specification is provided under the <a href="https://www.oasis-open.org/policies-guidelines/ipr/#RF-on-RAND-Mode">RF on RAND Terms Mode</a> of the <a href="https://www.oasis-open.org/policies-guidelines/ipr/">OASIS IPR Policy</a>, the mode chosen when the Technical Committee was established. For information on whether any patents have been disclosed that may be essential to implementing this specification, and any offers of patent licensing terms, please refer to the Intellectual Property Rights section of the TC’s web page (<a href="https://www.oasis-open.org/committees/odata/ipr.php">https://www.oasis-open.org/committees/odata/ipr.php</a>).</p>
<p>Note that any machine-readable content (<a href="https://www.oasis-open.org/policies-guidelines/tc-process-2017-05-26/#wpComponentsCompLang">Computer Language Definitions</a>) declared Normative for this Work Product is provided in separate plain text files. In the event of a discrepancy between any such plain text file and display content in the Work Product’s prose narrative document(s), the content in the separate plain text file prevails.</p>
<h4>Key words:</h4>
<p>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in BCP 14 <a href="#rfc2119">RFC2119</a> and <a href="#rfc8174">RFC8174</a> when, and only when, they appear in all capitals, as shown here.</p>
<h4>Citation format:</h4>
<p>When referencing this specification the following citation format should be used:</p>
<p><strong>[OData-Vocabularies-v4.0]</strong></p>
<p><em>OData Vocabularies Version 4.0</em>. Edited by Ralf Handl, Michael Pizzo, and Heiko Theißen. 19 June 2024. OASIS Committee Specification Draft 02. <a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csd02/odata-vocabularies-v4.0-csd02.html">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/csd02/odata-vocabularies-v4.0-csd02.html</a>. Latest stage: <a href="https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/odata-vocabularies-v4.0.html">https://docs.oasis-open.org/odata/odata-vocabularies/v4.0/odata-vocabularies-v4.0.html</a>.</p>
<h4>Notices</h4>
<p>Copyright © OASIS Open 2024. All Rights Reserved.</p>
<p>Distributed under the terms of the OASIS <a href="https://www.oasis-open.org/policies-guidelines/ipr/">IPR Policy</a>.</p>
<p>The name “OASIS” is a trademark of <a href="https://www.oasis-open.org/">OASIS</a>, the owner and developer of this specification, and should be used only to refer to the organization and its official outputs.</p>
<p>For complete copyright information please see the full Notices section in an Appendix below.</p>
</details>
</details>
<hr />
<details open><summary>
<h1 id="table-of-contents">Table of Contents</h1>
</summary>
<div class="toc">
<ul>
<li><a href="#Introduction">1 Introduction</a></li>
<li><a href="#CoreVocabulary">2 Core Vocabulary</a></li>
<li><a href="#CapabilitiesVocabulary">3 Capabilities Vocabulary</a></li>
<li><a href="#MeasuresVocabulary">4 Measures Vocabulary</a></li>
<li><a href="#ValidationVocabulary">5 Validation Vocabulary</a></li>
<li><a href="#AggregationVocabulary">6 Aggregation Vocabulary</a></li>
<li><a href="#AuthorizationVocabulary">7 Authorization Vocabulary</a></li>
<li><a href="#JSONVocabulary">8 JSON Vocabulary</a></li>
<li><a href="#RepeatabilityVocabulary">9 Repeatability Vocabulary</a></li>
<li><a href="#TemporalVocabulary">10 Temporal Vocabulary</a></li>
<li><a href="#References">A References</a>
<ul>
<li><a href="#NormativeReferences">A.1 Normative References</a></li>
<li><a href="#NonNormativeReferences">A.2 Non-Normative References</a></li>
</ul></li>
<li><a href="#Acknowledgments">B Acknowledgments</a>
<ul>
<li><a href="#SpecialThanks">B.1 Special Thanks</a></li>
<li><a href="#Participants">B.2 Participants</a></li>
</ul></li>
<li><a href="#RevisionHistory">C Revision History</a></li>
<li><a href="#Notices">D Notices</a></li>
</ul>
</div>
</details>
<hr />
<details open><summary>
<h1 id="1-introduction"><a id="Introduction" href="#Introduction">1 Introduction</a></h1>
</summary>
<p>OData provides the ability to decorate model elements of a schema and instances of data with descriptive elements called annotations. Annotations can be used to specify additional facts about an element, such as whether it is read-only, or to define a common concept, such as a person or a movie. Annotations consist of a term (the namespace-qualified name of the annotation being applied), a target (the element to which the term is applied), and a value. A set of related annotation terms with a common namespace comprises a Vocabulary. Shared vocabularies provide a powerful extensibility point for OData. Refer to the <a href="#ODataProtocol">OData-Protocol</a> and <a href="#ODataCSDL">OData-CSDL</a> specifications for more information on the use of vocabularies.</p>
<p>This prose specification describes a set of OData vocabularies maintained by the OASIS OData Technical Committee. It is one component of a Work Product that also includes the various vocabulary components. These vocabulary components are continuously evolved, the latest work-in-progress revisions are available at <a href="#ODataVocabs">OData-Vocabs</a>.</p>
<p>Other OData vocabularies may be created, shared, and maintained outside of this work product.</p>
<!-- No earlier versions published
--## ##--subsec Changes from Earlier Versions
Section | Feature / Change | Issue
--------|------------------|------
-->
</details>
<hr />
<details open><summary>
<h1 id="2-core-vocabulary"><a id="CoreVocabulary" href="#CoreVocabulary">2 Core Vocabulary</a></h1>
</summary>
<p><strong>Namespace: <a href="https://oasis-tcs.github.io/odata-vocabularies/vocabularies/Org.OData.Core.V1.xml">Org.OData.Core.V1</a></strong></p>
<p>Core terms needed to write vocabularies</p>
<h2>Terms</h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Term</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L69">ODataVersions</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;"><a name="ODataVersions"></a>A space-separated list of supported versions of the OData Protocol. Note that 4.0 is implied by 4.01 and does not need to be separately listed.</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L73">SchemaVersion</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;"><a name="SchemaVersion"></a>Service-defined value representing the version of the schema. Services MAY use semantic versioning, but clients MUST NOT assume this is the case.</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L77">Revisions</a></td>
<td style="text-align: left;">[<a href="#RevisionType">RevisionType</a>]</td>
<td style="text-align: left;"><a name="Revisions"></a>List of revisions of a model element</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L105">Description</a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;"><a name="Description"></a>A brief description of a model element</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L110">LongDescription</a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;"><a name="LongDescription"></a>A long description of a model element</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L115">Links</a></td>
<td style="text-align: left;">[<a href="#Link">Link</a>]</td>
<td style="text-align: left;"><a name="Links"></a>Link to related information</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L129">Example</a></td>
<td style="text-align: left;"><a href="#ExampleValue">ExampleValue</a></td>
<td style="text-align: left;"><a name="Example"></a>Example for an instance of the annotated model element (<a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L131">Example</a>)</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L198">Messages</a></td>
<td style="text-align: left;">[<a href="#MessageType">MessageType</a>]</td>
<td style="text-align: left;"><a name="Messages"></a>Instance annotation for warning and info messages</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L242">ValueException</a></td>
<td style="text-align: left;"><a href="#ValueExceptionType">ValueExceptionType</a></td>
<td style="text-align: left;"><a name="ValueException"></a>The annotated value is problematic</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L256">ResourceException</a></td>
<td style="text-align: left;"><a href="#ResourceExceptionType">ResourceExceptionType</a></td>
<td style="text-align: left;"><a name="ResourceException"></a>The annotated instance within a success payload is problematic</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L266">DataModificationException</a></td>
<td style="text-align: left;"><a href="#DataModificationExceptionType">DataModificationExceptionType</a></td>
<td style="text-align: left;"><a name="DataModificationException"></a>A modification operation failed on the annotated instance or collection within a success payload</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L306">IsLanguageDependent</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="IsLanguageDependent"></a>Properties and terms annotated with this term are language-dependent</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L317">RequiresType</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;"><a name="RequiresType"></a>Terms annotated with this term can only be applied to elements that have a type that is identical to or derived from the given type name</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L321">AppliesViaContainer</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="AppliesViaContainer"></a>The target path of an annotation with the tagged term MUST start with an entity container or the annotation MUST be embedded within an entity container, entity set or singleton<br>Services MAY additionally annotate a container-independent model element (entity type, property, navigation property) if allowed by the <code>AppliesTo</code> property of the term and the annotation applies to all uses of that model element.</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L331">ResourcePath</a></td>
<td style="text-align: left;">URL</td>
<td style="text-align: left;"><a name="ResourcePath"></a>Resource path for entity container child, can be relative to xml:base and the request URL</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L336">DereferenceableIDs</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="DereferenceableIDs"></a>Entity-ids are URLs that locate the identified entity</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L340">ConventionalIDs</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="ConventionalIDs"></a>Entity-ids follow OData URL conventions</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L346">Permissions</a></td>
<td style="text-align: left;"><a href="#Permission">Permission</a></td>
<td style="text-align: left;"><a name="Permissions"></a>Permissions for accessing a resource</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L369">ContentID</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;"><a name="ContentID"></a>A unique identifier for nested entities within a request.</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L375">DefaultNamespace</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="DefaultNamespace"></a>Functions, actions and types in this namespace can be referenced in URLs with or without namespace- or alias- qualification.<br>Data Modelers should ensure uniqueness of schema children across all default namespaces, and should avoid naming bound functions, actions, or derived types with the same name as a structural or navigational property of the type.</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L380">Immutable</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="Immutable"></a>A value for this non-key property can be provided by the client on insert and remains unchanged on update</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L384">Computed</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="Computed"></a>A value for this property is generated on both insert and update</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L388">ComputedDefaultValue</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="ComputedDefaultValue"></a>A value for this property can be provided by the client on insert and update. If no value is provided on insert, a non-static default value is generated</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L392">IsURL</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="IsURL"></a>Properties and terms annotated with this term MUST contain a valid URL</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L397">AcceptableMediaTypes</a></td>
<td style="text-align: left;">[MediaType]</td>
<td style="text-align: left;"><a name="AcceptableMediaTypes"></a>Lists the MIME types acceptable for the annotated entity type marked with HasStream=“true” or the annotated binary, stream, or string property or term<br>The annotation of a TypeDefinition propagates to the model elements having this type</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L403">MediaType</a></td>
<td style="text-align: left;">MediaType?</td>
<td style="text-align: left;"><a name="MediaType"></a>The media type of the media stream of the annotated entity type marked with HasStream=“true” or the annotated binary, stream, or string property or term<br>The annotation of a TypeDefinition propagates to the model elements having this type</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L409">IsMediaType</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="IsMediaType"></a>Properties and terms annotated with this term MUST contain a valid MIME type</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L414">ContentDisposition</a></td>
<td style="text-align: left;"><a href="#ContentDispositionType">ContentDispositionType</a></td>
<td style="text-align: left;"><a name="ContentDisposition"></a>The content disposition of the media stream of the annotated entity type marked with HasStream=“true” or the annotated binary, stream, or string property or term</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L427">OptimisticConcurrency</a></td>
<td style="text-align: left;">[PropertyPath]</td>
<td style="text-align: left;"><a name="OptimisticConcurrency"></a>Data modification requires the use of ETags. A non-empty collection contains the set of properties that are used to compute the ETag. An empty collection means that the service won’t tell how it computes the ETag</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L431">AdditionalProperties</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="AdditionalProperties"></a>Instances of this type may contain properties in addition to those declared in $metadata<br>If specified as false clients can assume that instances will not contain dynamic properties, irrespective of the value of the OpenType attribute.</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L436">AutoExpand</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="AutoExpand"></a>The service will automatically expand this stream property, navigation property, or the media stream of this media entity type even if not requested with $expand</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L440">AutoExpandReferences</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="AutoExpandReferences"></a>The service will automatically expand this navigation property as entity references even if not requested with <span class="math inline">\(expand=.../\)</span>ref</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L444">MayImplement</a></td>
<td style="text-align: left;">[<a href="#QualifiedTypeName">QualifiedTypeName</a>]</td>
<td style="text-align: left;"><a name="MayImplement"></a>A collection of qualified type names outside of the type hierarchy that instances of this type might be addressable as by using a type-cast segment.</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L471">Ordered</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="Ordered"></a>Collection has a stable order. Ordered collections of primitive or complex types can be indexed by ordinal.</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L475">PositionalInsert</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="PositionalInsert"></a>Items can be inserted at a given ordinal index.</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L479">AlternateKeys</a></td>
<td style="text-align: left;">[<a href="#AlternateKey">AlternateKey</a>]</td>
<td style="text-align: left;"><a name="AlternateKeys"></a>Communicates available alternate keys</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L507">OptionalParameter</a></td>
<td style="text-align: left;"><a href="#OptionalParameterType">OptionalParameterType</a></td>
<td style="text-align: left;"><a name="OptionalParameter"></a>Supplying a value for the action or function parameter is optional.<br>All parameters marked as optional must come after any parameters not marked as optional. The binding parameter must not be marked as optional.</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L518">OperationAvailable</a></td>
<td style="text-align: left;">Boolean?</td>
<td style="text-align: left;"><a name="OperationAvailable"></a>Action or function is available<br>The annotation value will usually be an expression, e.g. using properties of the binding parameter type for instance-dependent availability, or using properties of a singleton for global availability. The static value <code>null</code> means that availability cannot be determined upfront and is instead expressed as an operation advertisement.</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L523">RequiresExplicitBinding</a></td>
<td style="text-align: left;"><a href="#Tag">Tag?</a></td>
<td style="text-align: left;"><a name="RequiresExplicitBinding"></a>This bound action or function is only available on model elements annotated with the ExplicitOperationBindings term.</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L527">ExplicitOperationBindings</a></td>
<td style="text-align: left;">[<a href="#QualifiedBoundOperationName">QualifiedBoundOperationName</a>]</td>
<td style="text-align: left;"><a name="ExplicitOperationBindings"></a>The qualified names of explicitly bound operations that are supported on the target model element. These operations are in addition to any operations not annotated with RequiresExplicitBinding that are bound to the type of the target model element.</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L536">SymbolicName</a></td>
<td style="text-align: left;"><a href="#SimpleIdentifier">SimpleIdentifier</a></td>
<td style="text-align: left;"><a name="SymbolicName"></a>A symbolic name for a model element</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L545">GeometryFeature</a></td>
<td style="text-align: left;"><a href="#GeometryFeatureType">GeometryFeatureType?</a></td>
<td style="text-align: left;"><a name="GeometryFeature"></a>A <a href="https://datatracker.ietf.org/doc/html/rfc7946#section-3.2">Feature Object</a> represents a spatially bounded thing</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L561">AnyStructure</a></td>
<td style="text-align: left;"><a href="#Tag">Tag</a></td>
<td style="text-align: left;"><a name="AnyStructure"></a>Instances of a type are annotated with this tag if they have no common structure in a given response payload<br>The select-list of a context URL MUST be <code>(@Core.AnyStructure)</code> if it would otherwise be empty, but this instance annotation SHOULD be omitted from the response value.</td>
</tr>
</tbody>
</table>
<p><a name="RevisionType"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L80">RevisionType</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L81">Version</a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">The schema version with which this revision was first published</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L84">Kind</a></td>
<td style="text-align: left;"><a href="#RevisionKind">RevisionKind</a></td>
<td style="text-align: left;">The kind of revision</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L87">Description</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">Text describing the reason for the revision</td>
</tr>
</tbody>
</table>
<p><a name="RevisionKind"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L91">RevisionKind</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Member</th>
<th style="text-align: right;">Value</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L92">Added</a></td>
<td style="text-align: right;">0</td>
<td style="text-align: left;">Model element was added</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L95">Modified</a></td>
<td style="text-align: right;">1</td>
<td style="text-align: left;">Model element was modified</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L98">Deprecated</a></td>
<td style="text-align: right;">2</td>
<td style="text-align: left;">Model element was deprecated</td>
</tr>
</tbody>
</table>
<p><a name="Link"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L118">Link</a></h2>
<p>The Link term is inspired by the <code>atom:link</code> element, see <a href="https://tools.ietf.org/html/rfc4287#section-4.2.7">RFC4287</a>, and the <code>Link</code> HTTP header, see <a href="https://tools.ietf.org/html/rfc5988">RFC5988</a></p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L120">rel</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">Link relation type, see <a href="http://www.iana.org/assignments/link-relations/link-relations.xhtml">IANA Link Relations</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L123">href</a></td>
<td style="text-align: left;">URL</td>
<td style="text-align: left;">URL of related information</td>
</tr>
</tbody>
</table>
<p><a name="ExampleValue"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L169">ExampleValue</a></h2>
<p><strong>Derived Types:</strong></p>
<ul>
<li><a href="#PrimitiveExampleValue">PrimitiveExampleValue</a></li>
<li><a href="#ComplexExampleValue">ComplexExampleValue</a></li>
<li><a href="#EntityExampleValue">EntityExampleValue</a></li>
<li><a href="#ExternalExampleValue">ExternalExampleValue</a></li>
</ul>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L170">Description</a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">Description of the example value</td>
</tr>
</tbody>
</table>
<p><a name="PrimitiveExampleValue"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L174">PrimitiveExampleValue</a>: <a href="#ExampleValue">ExampleValue</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L170"><em>Description</em></a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">Description of the example value</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L175">Value</a></td>
<td style="text-align: left;">PrimitiveType</td>
<td style="text-align: left;">Example value for the custom parameter</td>
</tr>
</tbody>
</table>
<p><a name="ComplexExampleValue"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L179">ComplexExampleValue</a>: <a href="#ExampleValue">ExampleValue</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L170"><em>Description</em></a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">Description of the example value</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L180">Value</a></td>
<td style="text-align: left;">ComplexType</td>
<td style="text-align: left;">Example value for the custom parameter</td>
</tr>
</tbody>
</table>
<p><a name="EntityExampleValue"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L184">EntityExampleValue</a>: <a href="#ExampleValue">ExampleValue</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L170"><em>Description</em></a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">Description of the example value</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L185">Value</a></td>
<td style="text-align: left;">EntityType</td>
<td style="text-align: left;">Example value for the custom parameter</td>
</tr>
</tbody>
</table>
<p><a name="ExternalExampleValue"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L189">ExternalExampleValue</a>: <a href="#ExampleValue">ExampleValue</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L170"><em>Description</em></a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">Description of the example value</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L190">ExternalValue</a></td>
<td style="text-align: left;">URL</td>
<td style="text-align: left;">Url reference to the value in its literal format</td>
</tr>
</tbody>
</table>
<p><a name="MessageType"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L201">MessageType</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L202">code</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">Machine-readable, language-independent message code</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L205">message</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">Human-readable, language-dependent message text</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L209">severity</a></td>
<td style="text-align: left;"><a href="#MessageSeverity">MessageSeverity</a></td>
<td style="text-align: left;">Severity of the message</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L212">target</a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">A path to the target of the message detail, relative to the annotated instance</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L215">details</a></td>
<td style="text-align: left;">[<a href="#MessageType">MessageType</a>]</td>
<td style="text-align: left;">List of detail messages</td>
</tr>
</tbody>
</table>
<p><a name="MessageSeverity"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L219">MessageSeverity</a></h2>
<p><strong>Type:</strong> String</p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Allowed Value</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L222">success</a></td>
<td style="text-align: left;">Positive feedback - no action required</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L226">info</a></td>
<td style="text-align: left;">Additional information - no action required</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L230">warning</a></td>
<td style="text-align: left;">Warning - action may be required</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L234">error</a></td>
<td style="text-align: left;">Error - action is required</td>
</tr>
</tbody>
</table>
<p><a name="ExceptionType"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L245"><em>ExceptionType</em></a></h2>
<p><strong>Derived Types:</strong></p>
<ul>
<li><a href="#ValueExceptionType">ValueExceptionType</a></li>
<li><a href="#ResourceExceptionType">ResourceExceptionType</a></li>
<li><a href="#DataModificationExceptionType">DataModificationExceptionType</a></li>
</ul>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L246">info</a></td>
<td style="text-align: left;"><a href="#MessageType">MessageType?</a></td>
<td style="text-align: left;">Information about the exception</td>
</tr>
</tbody>
</table>
<p><a name="ValueExceptionType"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L250">ValueExceptionType</a>: <a href="#ExceptionType">ExceptionType</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L246"><em>info</em></a></td>
<td style="text-align: left;"><a href="#MessageType">MessageType?</a></td>
<td style="text-align: left;">Information about the exception</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L251">value</a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">String representation of the exact value</td>
</tr>
</tbody>
</table>
<p><a name="ResourceExceptionType"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L259">ResourceExceptionType</a>: <a href="#ExceptionType">ExceptionType</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L246"><em>info</em></a></td>
<td style="text-align: left;"><a href="#MessageType">MessageType?</a></td>
<td style="text-align: left;">Information about the exception</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L260">retryLink</a></td>
<td style="text-align: left;">URL?</td>
<td style="text-align: left;">A GET request to this URL retries retrieving the problematic instance</td>
</tr>
</tbody>
</table>
<p><a name="DataModificationExceptionType"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L269">DataModificationExceptionType</a>: <a href="#ExceptionType">ExceptionType</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L246"><em>info</em></a></td>
<td style="text-align: left;"><a href="#MessageType">MessageType?</a></td>
<td style="text-align: left;">Information about the exception</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L270">failedOperation</a></td>
<td style="text-align: left;"><a href="#DataModificationOperationKind">DataModificationOperationKind</a></td>
<td style="text-align: left;">The kind of modification operation that failed</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L273">responseCode</a></td>
<td style="text-align: left;">Int16?</td>
<td style="text-align: left;">Response code of the failed operation, e.g. 424 for a failed dependency</td>
</tr>
</tbody>
</table>
<p><a name="DataModificationOperationKind"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L279">DataModificationOperationKind</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Member</th>
<th style="text-align: right;">Value</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L280">insert</a></td>
<td style="text-align: right;">0</td>
<td style="text-align: left;">Insert new instance</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L283">update</a></td>
<td style="text-align: right;">1</td>
<td style="text-align: left;">Update existing instance</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L286">upsert</a></td>
<td style="text-align: right;">2</td>
<td style="text-align: left;">Insert new instance or update it if it already exists</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L289">delete</a></td>
<td style="text-align: right;">3</td>
<td style="text-align: left;">Delete existing instance</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L292">invoke</a></td>
<td style="text-align: right;">4</td>
<td style="text-align: left;">Invoke action or function</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L295">link</a></td>
<td style="text-align: right;">5</td>
<td style="text-align: left;">Add link between entities</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L298">unlink</a></td>
<td style="text-align: right;">6</td>
<td style="text-align: left;">Remove link between entities</td>
</tr>
</tbody>
</table>
<p><a name="Tag"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L311">Tag</a></h2>
<p><strong>Type:</strong> Boolean</p>
<p>This is the type to use for all tagging terms</p>
<p><a name="Permission"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L349">Permission</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Flag Member</th>
<th style="text-align: right;">Value</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L350">None</a></td>
<td style="text-align: right;">0</td>
<td style="text-align: left;">No permissions</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L353">Read</a></td>
<td style="text-align: right;">1</td>
<td style="text-align: left;">Read permission</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L356">Write</a></td>
<td style="text-align: right;">2</td>
<td style="text-align: left;">Write permission</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L359">ReadWrite</a></td>
<td style="text-align: right;">3</td>
<td style="text-align: left;">Read and write permission</td>
</tr>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L362">Invoke</a></td>
<td style="text-align: right;">4</td>
<td style="text-align: left;">Permission to invoke actions</td>
</tr>
</tbody>
</table>
<p><a name="ContentDispositionType"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L418">ContentDispositionType</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L419">Type</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">The disposition type of the binary or stream value, see <a href="https://datatracker.ietf.org/doc/html/rfc6266#section-4.2">RFC 6266, Disposition Type</a></td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L422">Filename</a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">The proposed filename for downloading the binary or stream value, see <a href="https://datatracker.ietf.org/doc/html/rfc6266#section-4.3">RFC 6266, Disposition Parameter: ‘Filename’</a></td>
</tr>
</tbody>
</table>
<p><a name="QualifiedTermName"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L448">QualifiedTermName</a></h2>
<p><strong>Type:</strong> String</p>
<p>The qualified name of a term in scope.</p>
<p><a name="QualifiedTypeName"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L452">QualifiedTypeName</a></h2>
<p><strong>Type:</strong> String</p>
<p>The qualified name of a type in scope.</p>
<p><a name="QualifiedActionName"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L456">QualifiedActionName</a></h2>
<p><strong>Type:</strong> String</p>
<p>The qualified name of an action in scope.</p>
<p><a name="QualifiedBoundOperationName"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L460">QualifiedBoundOperationName</a></h2>
<p><strong>Type:</strong> String</p>
<p>The qualified name of a bound action or function in scope.</p>
<p>Either</p>
<ul>
<li>the qualified name of an action, to indicate the single bound overload with the specified binding parameter type,</li>
<li>the qualified name of a function, to indicate all bound overloads with the specified binding parameter type, or</li>
<li>the qualified name of a function followed by parentheses containing a comma-separated list of parameter types, in the order of their definition, to identify a single function overload with the first (binding) parameter matching the specified parameter type.</li>
</ul>
<p><a name="AlternateKey"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L482">AlternateKey</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L483">Key</a></td>
<td style="text-align: left;">[<a href="#PropertyRef">PropertyRef</a>]</td>
<td style="text-align: left;">The set of properties that make up this key</td>
</tr>
</tbody>
</table>
<p><a name="PropertyRef"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L487">PropertyRef</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L488">Name</a></td>
<td style="text-align: left;">PropertyPath</td>
<td style="text-align: left;">A path expression resolving to a primitive property of the entity type itself or to a primitive property of a complex or navigation property (recursively) of the entity type. The names of the properties in the path are joined together by forward slashes.</td>
</tr>
<tr class="even">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L491">Alias</a></td>
<td style="text-align: left;">String</td>
<td style="text-align: left;">A SimpleIdentifier that MUST be unique within the set of aliases, structural and navigation properties of the containing entity type that MUST be used in the key predicate of URLs</td>
</tr>
</tbody>
</table>
<p><a name="Dictionary"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L496">Dictionary</a></h2>
<p>A dictionary of name-value pairs. Names must be valid property names, values may be restricted to a list of types via an annotation with term <code>Validation.OpenPropertyTypeConstraint</code>.</p>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;">Any simple identifier</td>
<td style="text-align: left;">Any type listed in <code>Validation.OpenPropertyTypeConstraint</code>, or any type if there is no constraint</td>
</tr>
</tbody>
</table>
<p><a name="OptionalParameterType"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L511">OptionalParameterType</a></h2>
<table>
<thead>
<tr class="header">
<th style="text-align: left;">Property</th>
<th style="text-align: left;">Type</th>
<th style="text-align: left;">Description</th>
</tr>
</thead>
<tbody>
<tr class="odd">
<td style="text-align: left;"><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L512">DefaultValue</a></td>
<td style="text-align: left;">String?</td>
<td style="text-align: left;">Default value for an optional parameter of primitive or enumeration type, using the same rules as the <code>cast</code> function in URLs.<br>If no explicit DefaultValue is specified, the service is free on how to interpret omitting the parameter from the request. For example, a service might interpret an omitted optional parameter <code>KeyDate</code> as having the current date.</td>
</tr>
</tbody>
</table>
<p><a name="LocalDateTime"></a></p>
<h2><a href="https://github.com/oasis-tcs/odata-vocabularies/blob/main/vocabularies/Org.OData.Core.V1.xml#L531">LocalDateTime</a></h2>
<p><strong>Type:</strong> String</p>