Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfhandl committed Aug 8, 2017
1 parent d8ccfe6 commit 01eb602
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
10 changes: 6 additions & 4 deletions vocabularies/Org.OData.Capabilities.V1.json
Expand Up @@ -569,21 +569,23 @@
"$Kind": "Term",
"$Type": "Capabilities.DeepInsertSupportType",
"$AppliesTo": [
"EntityContainer"
"EntityContainer",
"EntitySet",
"Collection"
],
"@Core.Description": "Deep Insert Support for the service"
"@Core.Description": "Deep Insert Support of the annotated resource (the whole service, an entity set, or a collection-valued resource)"
},
"DeepInsertSupportType": {
"$Kind": "ComplexType",
"Supported": {
"$Type": "Edm.Boolean",
"$DefaultValue": true,
"@Core.Description": "Service supports deep inserts"
"@Core.Description": "Annotation target supports deep inserts"
},
"ContentIDSupported": {
"$Type": "Edm.Boolean",
"$DefaultValue": true,
"@Core.Description": "Service supports accepting and returning nested entities annotated with the contentID instance annotation."
"@Core.Description": "Annotation target supports accepting and returning nested entities annotated with the `Core.ContentID` instance annotation."
}
},
"UpdateRestrictions": {
Expand Down
6 changes: 3 additions & 3 deletions vocabularies/Org.OData.Capabilities.V1.md
Expand Up @@ -67,7 +67,7 @@ Term|Type|Description
[ExpandRestrictions](Org.OData.Capabilities.V1.xml#L386)|[ExpandRestrictionsType](#ExpandRestrictionsType)|<a name="ExpandRestrictions"></a>Restrictions on $expand expressions
[SearchRestrictions](Org.OData.Capabilities.V1.xml#L402)|[SearchRestrictionsType](#SearchRestrictionsType)|<a name="SearchRestrictions"></a>Restrictions on $search expressions
[InsertRestrictions](Org.OData.Capabilities.V1.xml#L436)|[InsertRestrictionsType](#InsertRestrictionsType)|<a name="InsertRestrictions"></a>Restrictions on insert operations
[DeepInsertSupport](Org.OData.Capabilities.V1.xml#L452)|[DeepInsertSupportType](#DeepInsertSupportType)|<a name="DeepInsertSupport"></a>Deep Insert Support for the service
[DeepInsertSupport](Org.OData.Capabilities.V1.xml#L452)|[DeepInsertSupportType](#DeepInsertSupportType)|<a name="DeepInsertSupport"></a>Deep Insert Support of the annotated resource (the whole service, an entity set, or a collection-valued resource)
[UpdateRestrictions](Org.OData.Capabilities.V1.xml#L465)|[UpdateRestrictionsType](#UpdateRestrictionsType)|<a name="UpdateRestrictions"></a>Restrictions on update operations
[DeleteRestrictions](Org.OData.Capabilities.V1.xml#L481)|[DeleteRestrictionsType](#DeleteRestrictionsType)|<a name="DeleteRestrictions"></a>Restrictions on delete operations

Expand Down Expand Up @@ -244,8 +244,8 @@ Property|Type|Description

Property|Type|Description
:-------|:---|:----------
[Supported](Org.OData.Capabilities.V1.xml#L456)|Boolean|Service supports deep inserts
[ContentIDSupported](Org.OData.Capabilities.V1.xml#L459)|Boolean|Service supports accepting and returning nested entities annotated with the contentID instance annotation.
[Supported](Org.OData.Capabilities.V1.xml#L456)|Boolean|Annotation target supports deep inserts
[ContentIDSupported](Org.OData.Capabilities.V1.xml#L459)|Boolean|Annotation target supports accepting and returning nested entities annotated with the `Core.ContentID` instance annotation.

## <a name="UpdateRestrictionsType"></a>[UpdateRestrictionsType](Org.OData.Capabilities.V1.xml#L468)

Expand Down
8 changes: 4 additions & 4 deletions vocabularies/Org.OData.Capabilities.V1.xml
Expand Up @@ -449,16 +449,16 @@ supported:
</Property>
</ComplexType>

<Term Name="DeepInsertSupport" Type="Capabilities.DeepInsertSupportType" AppliesTo="EntityContainer">
<Annotation Term="Core.Description" String="Deep Insert Support for the service" />
<Term Name="DeepInsertSupport" Type="Capabilities.DeepInsertSupportType" AppliesTo="EntityContainer EntitySet Collection">
<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" DefaultValue="true">
<Annotation Term="Core.Description" String="Service supports deep inserts" />
<Annotation Term="Core.Description" String="Annotation target supports deep inserts" />
</Property>
<Property Name="ContentIDSupported" Type="Edm.Boolean" DefaultValue="true">
<Annotation Term="Core.Description"
String="Service supports accepting and returning nested entities annotated with the contentID instance annotation." />
String="Annotation target supports accepting and returning nested entities annotated with the `Core.ContentID` instance annotation." />
</Property>
</ComplexType>

Expand Down

0 comments on commit 01eb602

Please sign in to comment.