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

XColumns Data Type

Java class for x_columns complex type.

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

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

Properties
name data type description
column array of array of XColumn

Example

{
  "column" : [ [ {
    "name" : "...",
    "_type" : "...",
    "comment" : "...",
    "start_time" : "...",
    "end_time" : "..."
  }, {
    "name" : "...",
    "_type" : "...",
    "comment" : "...",
    "start_time" : "...",
    "end_time" : "..."
  } ], [ {
    "name" : "...",
    "_type" : "...",
    "comment" : "...",
    "start_time" : "...",
    "end_time" : "..."
  }, {
    "name" : "...",
    "_type" : "...",
    "comment" : "...",
    "start_time" : "...",
    "end_time" : "..."
  } ] ]
}