Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SortOrder -> SortOrderType
Browse files Browse the repository at this point in the history
HeikoTheissen committed Nov 14, 2023
1 parent b5a6f34 commit 9238702
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions vocabularies/Analytics.json
Original file line number Diff line number Diff line change
@@ -251,12 +251,12 @@
"@Common.Experimental": true,
"Property": { "@Core.Description": "Property by which to sort" },
"Order": {
"$Type": "Analytics.SortOrder",
"$DefaultValue": "Analytics.SortOrder/Asc",
"$Type": "Analytics.SortOrderType",
"$DefaultValue": "Analytics.SortOrderType/Asc",
"@Core.Description": "Sorting direction"
}
},
"SortOrder": {
"SortOrderType": {
"$Kind": "TypeDefinition",
"$UnderlyingType": "Edm.String",
"@Common.Experimental": true,
10 changes: 5 additions & 5 deletions vocabularies/Analytics.md
Original file line number Diff line number Diff line change
@@ -83,15 +83,15 @@ Property|Type|Description
Property|Type|Description
:-------|:---|:----------
[Property](./Analytics.xml#L260:~:text=<ComplexType%20Name="-,AutoExpandSiblingOrder,-")|String|Property by which to sort
[Order](./Analytics.xml#L263:~:text=<ComplexType%20Name="-,AutoExpandSiblingOrder,-")|[SortOrder](#SortOrder)|Sorting direction
[Order](./Analytics.xml#L263:~:text=<ComplexType%20Name="-,AutoExpandSiblingOrder,-")|[SortOrderType](#SortOrderType)|Sorting direction

<a name="SortOrder"></a>
## [SortOrder](./Analytics.xml#L267:~:text=<TypeDefinition%20Name="-,SortOrder,-") *([Experimental](Common.md#Experimental))*
<a name="SortOrderType"></a>
## [SortOrderType](./Analytics.xml#L267:~:text=<TypeDefinition%20Name="-,SortOrderType,-") *([Experimental](Common.md#Experimental))*
**Type:** String



Allowed Value|Description
:------------|:----------
[asc](./Analytics.xml#L271:~:text=<TypeDefinition%20Name="-,SortOrder,-")|Sort in ascending order
[desc](./Analytics.xml#L275:~:text=<TypeDefinition%20Name="-,SortOrder,-")|Sort in descending order
[asc](./Analytics.xml#L271:~:text=<TypeDefinition%20Name="-,SortOrderType,-")|Sort in ascending order
[desc](./Analytics.xml#L275:~:text=<TypeDefinition%20Name="-,SortOrderType,-")|Sort in descending order
4 changes: 2 additions & 2 deletions vocabularies/Analytics.xml
Original file line number Diff line number Diff line change
@@ -260,11 +260,11 @@
<Property Name="Property" Type="Edm.String" Nullable="false">
<Annotation Term="Core.Description" String="Property by which to sort" />
</Property>
<Property Name="Order" Type="Analytics.SortOrder" Nullable="false" DefaultValue="Analytics.SortOrder/Asc">
<Property Name="Order" Type="Analytics.SortOrderType" Nullable="false" DefaultValue="Analytics.SortOrderType/Asc">
<Annotation Term="Core.Description" String="Sorting direction" />
</Property>
</ComplexType>
<TypeDefinition Name="SortOrder" UnderlyingType="Edm.String">
<TypeDefinition Name="SortOrderType" UnderlyingType="Edm.String">
<Annotation Term="Common.Experimental" />
<Annotation Term="Validation.AllowedValues">
<Collection>

0 comments on commit 9238702

Please sign in to comment.