Skip to content

Commit

Permalink
@uhlmannm's suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
HeikoTheissen committed Apr 12, 2024
1 parent f27abe8 commit 3ca799d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions vocabularies/Hierarchy.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@
"@Core.Description": "Drill state of an entry",
"@Validation.AllowedValues": [
{ "Value": "expanded", "@Core.Description": "The entry precedes entries from deeper aggregation levels" },
{ "Value": "leaf", "@Core.Description": "The entry belongs to the deepest aggregation level" },
{
"Value": "collapsed",
"@Core.Description": "The entry belongs to the highest non-expanded aggregation level, but not the deepest"
},
{ "Value": "leaf", "@Core.Description": "The entry belongs to the deepest aggregation level" }
"@Core.Description": "The entry belongs to the highest non-expanded aggregation level, but is not a leaf"
}
]
},
"DistanceFromRoot": {
Expand Down
2 changes: 1 addition & 1 deletion vocabularies/Hierarchy.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ The properties in this complex type contain information about
Property|Type|Description
:-------|:---|:----------
[LimitedDescendantCount](./Hierarchy.xml#L58:~:text=<ComplexType%20Name="-,HierarchyType,-")|Int64?|Number of entries from deeper aggregation levels that are expanded
[DrillState](./Hierarchy.xml#L61:~:text=<ComplexType%20Name="-,HierarchyType,-")|String?|Drill state of an entry<dl>Allowed values:<dt>[expanded](./Hierarchy.xml#L65)<dd>The entry precedes entries from deeper aggregation levels<dt>[collapsed](./Hierarchy.xml#L69)<dd>The entry belongs to the highest non-expanded aggregation level, but not the deepest<dt>[leaf](./Hierarchy.xml#L73)<dd>The entry belongs to the deepest aggregation level</dl>
[DrillState](./Hierarchy.xml#L61:~:text=<ComplexType%20Name="-,HierarchyType,-")|String?|Drill state of an entry<dl>Allowed values:<dt>[expanded](./Hierarchy.xml#L65)<dd>The entry precedes entries from deeper aggregation levels<dt>[leaf](./Hierarchy.xml#L69)<dd>The entry belongs to the deepest aggregation level<dt>[collapsed](./Hierarchy.xml#L73)<dd>The entry belongs to the highest non-expanded aggregation level, but is not a leaf</dl>
[DistanceFromRoot](./Hierarchy.xml#L80:~:text=<ComplexType%20Name="-,HierarchyType,-")|Int64?|Position of the current aggregation level in the list of all aggregation levels

<a name="RecursiveHierarchyType"></a>
Expand Down
8 changes: 4 additions & 4 deletions vocabularies/Hierarchy.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@
<PropertyValue Property="Value" String="expanded" />
<Annotation Term="Core.Description" String="The entry precedes entries from deeper aggregation levels" />
</Record>
<Record>
<PropertyValue Property="Value" String="collapsed" />
<Annotation Term="Core.Description" String="The entry belongs to the highest non-expanded aggregation level, but not the deepest" />
</Record>
<Record>
<PropertyValue Property="Value" String="leaf" />
<Annotation Term="Core.Description" String="The entry belongs to the deepest aggregation level" />
</Record>
<Record>
<PropertyValue Property="Value" String="collapsed" />
<Annotation Term="Core.Description" String="The entry belongs to the highest non-expanded aggregation level, but is not a leaf" />
</Record>
</Collection>
</Annotation>
</Property>
Expand Down

2 comments on commit 3ca799d

@ThomasChadzelek
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Warum ersetzt man einmal "deepest" durch "highest non-expanded" und dann wieder andersrum? Für mich erschließt sich nicht, was dadurch besser wird.

@HeikoTheissen
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"deepest" was replaced by "leaf".

Please sign in to comment.