Skip to content

Commit

Permalink
updated after discussion 2024-11-27
Browse files Browse the repository at this point in the history
  • Loading branch information
GeraldKrause committed Jan 14, 2025
1 parent 36861ce commit 9d732ab
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 22 deletions.
20 changes: 4 additions & 16 deletions vocabularies/Org.OData.Capabilities.V1.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,31 +92,19 @@
"$Type": "Core.Tag",
"$DefaultValue": true,
"$AppliesTo": [
"EntityContainer",
"EntitySet",
"Singleton",
"Action",
"ActionImport",
"Function",
"FunctionImport"
"EntityContainer"
],
"@Core.Description": "Supports the `respond-async` preference"
"@Core.Description": "Service supports the asynchronous request preference"
},
"AsynchronousRequestsRequired": {
"$Kind": "Term",
"$Type": "Core.Tag",
"$DefaultValue": true,
"$AppliesTo": [
"EntityContainer",
"EntitySet",
"Singleton",
"Action",
"ActionImport",
"Function",
"FunctionImport"
"EntityContainer"
],
"$BaseTerm": "Capabilities.AsynchronousRequestsSupported",
"@Core.Description": "Requires the `respond-async` preference"
"@Core.Description": "Service requires the asynchronous request preference"
},
"BatchContinueOnErrorSupported": {
"$Kind": "Term",
Expand Down
4 changes: 2 additions & 2 deletions vocabularies/Org.OData.Capabilities.V1.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ Term|Type|Description
[SupportedFormats](Org.OData.Capabilities.V1.xml#L132)|\[MediaType\]|<a name="SupportedFormats"></a>Media types of supported formats, including format parameters
[SupportedMetadataFormats](Org.OData.Capabilities.V1.xml#L137)|\[MediaType\]|<a name="SupportedMetadataFormats"></a>Media types of supported formats for $metadata, including format parameters
[AcceptableEncodings](Org.OData.Capabilities.V1.xml#L142)|\[String\]|<a name="AcceptableEncodings"></a>List of acceptable compression methods for ($batch) requests, e.g. gzip
[AsynchronousRequestsSupported](Org.OData.Capabilities.V1.xml#L148)|[Tag](Org.OData.Core.V1.md#Tag)|<a name="AsynchronousRequestsSupported"></a>Supports the `respond-async` preference
[AsynchronousRequestsRequired](Org.OData.Capabilities.V1.xml#L152)|[Tag](Org.OData.Core.V1.md#Tag)|<a name="AsynchronousRequestsRequired"></a>Requires the `respond-async` preference
[AsynchronousRequestsSupported](Org.OData.Capabilities.V1.xml#L148)|[Tag](Org.OData.Core.V1.md#Tag)|<a name="AsynchronousRequestsSupported"></a>Service supports the asynchronous request preference
[AsynchronousRequestsRequired](Org.OData.Capabilities.V1.xml#L152)|[Tag](Org.OData.Core.V1.md#Tag)|<a name="AsynchronousRequestsRequired"></a>Service requires the asynchronous request preference
[BatchContinueOnErrorSupported](Org.OData.Capabilities.V1.xml#L156)|[Tag](Org.OData.Core.V1.md#Tag)|<a name="BatchContinueOnErrorSupported"></a>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.
[IsolationSupported](Org.OData.Capabilities.V1.xml#L160)|[IsolationLevel](#IsolationLevel)|<a name="IsolationSupported"></a>Supported odata.isolation levels
[CrossJoinSupported](Org.OData.Capabilities.V1.xml#L169)|[Tag](Org.OData.Core.V1.md#Tag)|<a name="CrossJoinSupported"></a>Supports cross joins for the entity sets in this container
Expand Down
8 changes: 4 additions & 4 deletions vocabularies/Org.OData.Capabilities.V1.xml
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,12 @@ supported:

<!-- Supported Preferences -->

<Term Name="AsynchronousRequestsSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer EntitySet Singleton Action ActionImport Function FunctionImport">
<Annotation Term="Core.Description" String="Supports the `respond-async` preference" />
<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="AsynchronousRequestsRequired" BaseTerm="Capabilities.AsynchronousRequestsSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer EntitySet Singleton Action ActionImport Function FunctionImport">
<Annotation Term="Core.Description" String="Requires the `respond-async` preference" />
<Term Name="AsynchronousRequestsRequired" BaseTerm="Capabilities.AsynchronousRequestsSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Service requires the asynchronous request preference" />
</Term>

<Term Name="BatchContinueOnErrorSupported" Type="Core.Tag" Nullable="false" DefaultValue="true" AppliesTo="EntityContainer">
Expand Down

0 comments on commit 9d732ab

Please sign in to comment.