XFlattenedColumns Data Type

LENS will use this type to return all flattened columns reachable from a cube or dimension. This type is not expected to be created by end-users directly.

Java class for x_flattened_columns complex type.

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

 <complexType name="x_flattened_columns">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="flattened_column" type="{uri:lens:cube:0.1}x_flattened_column" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

Properties
name data type description
flattened_column array of array of XFlattenedColumn

Example

{
  "flattened_column" : [ [ {
    "table_name" : "...",
    "measure" : {
      "_type" : "INT",
      "default_aggr" : "...",
      "format_string" : "...",
      "start_time" : 12345,
      "end_time" : 12345,
      "unit" : "...",
      "min" : 12345.0,
      "max" : 12345.0,
      "name" : "...",
      "tags" : { }
    },
    "expression" : {
      "_type" : "...",
      "expr_spec" : [ [ { }, { } ], [ { }, { } ] ],
      "name" : "...",
      "tags" : { }
    },
    "dim_attribute" : {
      "_type" : "...",
      "chain_ref_column" : [ [ { }, { } ], [ { }, { } ] ],
      "hierarchy" : { },
      "values" : [ [ "...", "..." ], [ "...", "..." ] ],
      "name" : "...",
      "tags" : { }
    }
  }, {
    "table_name" : "...",
    "measure" : {
      "_type" : "TINYINT",
      "default_aggr" : "...",
      "format_string" : "...",
      "start_time" : 12345,
      "end_time" : 12345,
      "unit" : "...",
      "min" : 12345.0,
      "max" : 12345.0,
      "name" : "...",
      "tags" : { }
    },
    "expression" : {
      "_type" : "...",
      "expr_spec" : [ [ { }, { } ], [ { }, { } ] ],
      "name" : "...",
      "tags" : { }
    },
    "dim_attribute" : {
      "_type" : "...",
      "chain_ref_column" : [ [ { }, { } ], [ { }, { } ] ],
      "hierarchy" : { },
      "values" : [ [ "...", "..." ], [ "...", "..." ] ],
      "name" : "...",
      "tags" : { }
    }
  } ], [ {
    "table_name" : "...",
    "measure" : {
      "_type" : "FLOAT",
      "default_aggr" : "...",
      "format_string" : "...",
      "start_time" : 12345,
      "end_time" : 12345,
      "unit" : "...",
      "min" : 12345.0,
      "max" : 12345.0,
      "name" : "...",
      "tags" : { }
    },
    "expression" : {
      "_type" : "...",
      "expr_spec" : [ [ { }, { } ], [ { }, { } ] ],
      "name" : "...",
      "tags" : { }
    },
    "dim_attribute" : {
      "_type" : "...",
      "chain_ref_column" : [ [ { }, { } ], [ { }, { } ] ],
      "hierarchy" : { },
      "values" : [ [ "...", "..." ], [ "...", "..." ] ],
      "name" : "...",
      "tags" : { }
    }
  }, {
    "table_name" : "...",
    "measure" : {
      "_type" : "DOUBLE",
      "default_aggr" : "...",
      "format_string" : "...",
      "start_time" : 12345,
      "end_time" : 12345,
      "unit" : "...",
      "min" : 12345.0,
      "max" : 12345.0,
      "name" : "...",
      "tags" : { }
    },
    "expression" : {
      "_type" : "...",
      "expr_spec" : [ [ { }, { } ], [ { }, { } ] ],
      "name" : "...",
      "tags" : { }
    },
    "dim_attribute" : {
      "_type" : "...",
      "chain_ref_column" : [ [ { }, { } ], [ { }, { } ] ],
      "hierarchy" : { },
      "values" : [ [ "...", "..." ], [ "...", "..." ] ],
      "name" : "...",
      "tags" : { }
    }
  } ] ]
}