2.2.4.90 Dimension
Namespace: http://www.microsoft.com/performancepoint/scorecards
The Dimension complex type specifies the structure of a dimension. It extends the complex type NameInfo (section 2.2.4.149).
-
<xs:complexType name="Dimension" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:complexContent mixed="false"> <xs:extension base="tns:NameInfo"> <xs:sequence> <xs:element minOccurs="0" maxOccurs="1" name="MeasureGroupNames" type="tns:ArrayOfString"/> <xs:element minOccurs="1" maxOccurs="1" name="Type" type="tns:DimensionTypeEnum"/> <xs:element minOccurs="0" maxOccurs="1" name="Hierarchies" type="tns:ArrayOfHierarchy"/> <xs:element minOccurs="0" maxOccurs="1" name="Levels" type="tns:ArrayOfLevel"/> </xs:sequence> <xs:attribute name="IsMeasureDimension" type="xs:boolean" use="required"/> <xs:attribute name="DefaultMemberName" type="xs:string"/> </xs:extension> </xs:complexContent> </xs:complexType>
MeasureGroupNames: Specifies a list (1) of the names of groupings of the measures in the dimension. This element MUST be present.
Type: Specifies the type of the dimension in the form of the simple type DimensionTypeEnum (section 2.2.5.13). This element MUST be present.
Hierarchies: Specifies the hierarchies in the dimension. A list (1) of the Hierarchy elements as defined in the complex type ArrayOfHierarchy (section 2.2.4.39). The Hierarchy.Levels collection will contain only the Levels that are used in that Hierarchy. This element MUST be present.
Levels: Specifies the levels in the dimension. A list (1) of the Level elements as defined in the complex type ArrayOfLevel (section 2.2.4.43). The Dimension.Levels collection will contain all of the Levels that are used in all of the Hierarchies in a Dimension. This element MUST be present.
IsMeasureDimension: Specifies if the dimension is a measure dimension. This value MUST be TRUE when the value of Type is "Measure"; otherwise, it is FALSE. This element MUST be present.
DefaultMemberName: Specifies the unique name of the default member for the dimension. The length of the value MUST NOT exceed 1000 characters. This element MUST be present.