Skip to content

ATSCALE-27344 Introduce level property to perspective hierarchies #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions sml-reference/model.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,7 @@ perspectives:
- unique_name: Internet Sales - No PII
dimensions:
- hierarchies:
- levels:
- Customer Name
- level: Customer Name
name: Customer Hierarchy
name: Customer Dimension
secondaryattributes:
Expand Down Expand Up @@ -279,6 +278,7 @@ namespace Models{
}
class PerspectiveHierarchy{
String name
String level
Array~String~ levels
}
}
Expand Down Expand Up @@ -489,7 +489,8 @@ Supported properties:
- `hierarchies`: Array, optional. A list of the specific hierarchies
within the dimension to hide in the perspective. Supported properties:
- `name`: String, required. The name of the hierarchy.
- `levels`: Array, optional. Defines a single level in the hierarchy to be hidden in the perspective. All levels below the specified level will also be hidden. Only one level should be provided.
- `level`: String, optional. Defines a single level in the hierarchy to be hidden in the perspective. All levels below the specified level will also be hidden.
- `levels`: Array, optional. ⚠️ **DEPRECATED** use `level` instead.

- `secondary_attributes`: Array, optional. A list of the dimension's
secondary attributes to hide in the perspective.
Expand Down
Loading