XFlattenedColumn Data Type

Java class for x_flattened_column complex type.

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

 <complexType name="x_flattened_column">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <choice>
         <element name="measure" type="{uri:lens:cube:0.1}x_measure"/>
         <element name="expression" type="{uri:lens:cube:0.1}x_expr_column"/>
         <element name="dim_attribute" type="{uri:lens:cube:0.1}x_dim_attribute"/>
       </choice>
       <attribute name="table_name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="chain_name" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 

Properties
name data type description
table_name string
measure XMeasure
expression XExprColumn
dim_attribute XDimAttribute

Example

{
  "table_name" : "...",
  "measure" : {
    "_type" : "FLOAT",
    "default_aggr" : "...",
    "format_string" : "...",
    "start_time" : 12345,
    "end_time" : 12345,
    "unit" : "...",
    "min" : 12345.0,
    "max" : 12345.0,
    "name" : "...",
    "tags" : {
      "property" : [ [ { }, { } ], [ { }, { } ] ]
    }
  },
  "expression" : {
    "_type" : "...",
    "expr_spec" : [ [ {
      "expr" : "...",
      "start_time" : 12345,
      "end_time" : 12345
    }, {
      "expr" : "...",
      "start_time" : 12345,
      "end_time" : 12345
    } ], [ {
      "expr" : "...",
      "start_time" : 12345,
      "end_time" : 12345
    }, {
      "expr" : "...",
      "start_time" : 12345,
      "end_time" : 12345
    } ] ],
    "name" : "...",
    "tags" : {
      "property" : [ [ { }, { } ], [ { }, { } ] ]
    }
  },
  "dim_attribute" : {
    "_type" : "...",
    "chain_ref_column" : [ [ {
      "chain_name" : "...",
      "ref_col" : "...",
      "dest_table" : "..."
    }, {
      "chain_name" : "...",
      "ref_col" : "...",
      "dest_table" : "..."
    } ], [ {
      "chain_name" : "...",
      "ref_col" : "...",
      "dest_table" : "..."
    }, {
      "chain_name" : "...",
      "ref_col" : "...",
      "dest_table" : "..."
    } ] ],
    "hierarchy" : {
      "dim_attribute" : [ [ { }, { } ], [ { }, { } ] ]
    },
    "values" : [ [ "...", "..." ], [ "...", "..." ] ],
    "name" : "...",
    "tags" : {
      "property" : [ [ { }, { } ], [ { }, { } ] ]
    }
  }
}