This project has retired. For details please refer to its Attic page.
Lens Server: x_dimension

x_dimension Data Type

XDimension consists of set of attributes, expressions, join-chains

Java class for x_dimension complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="x_dimension">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="attributes" type="{uri:lens:cube:0.1}x_dim_attributes" minOccurs="0"/>
         <element name="expressions" type="{uri:lens:cube:0.1}x_expressions" minOccurs="0"/>
         <element name="join_chains" type="{uri:lens:cube:0.1}x_join_chains" minOccurs="0"/>
         <element name="properties" type="{uri:lens:cube:0.1}x_properties" minOccurs="0"/>
       </sequence>
       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 

Namespace
uri:lens:cube:0.1
Schema
ns2.xsd
Properties
name data type type namespace min/max occurs description
description string attribute 0/1  
name string attribute 1/1  
attributes x_dim_attributes element ns2 0/1  
expressions x_expressions element ns2 0/1  
join_chains x_join_chains element ns2 0/1  
properties x_properties element ns2 0/1  

Example

<x----- description="..." name="..." xmlns="uri:lens:cube:0.1">
  <attributes>
    <dim_attribute _type="..." end_time="..." num_distinct_values="..." start_time="...">
      <chain_ref_column/>
      <hierarchy/>
      <values>...</values>
    </dim_attribute>
  </attributes>
  <expressions>
    <expression _type="...">
      <expr_spec/>
    </expression>
  </expressions>
  <join_chains>
    <join_chain dest_table="...">
      <paths/>
    </join_chain>
  </join_chains>
  <properties>
    <property name="..." value="..."/>
  </properties>
</x----->