XFact Data Type

XFact can either be a Cube Fact for which the user would give the full specification of the columns and storages or can be a Virtual fact, for which the user would specify only the Source fact and filters if any. Virtual fact derives its columns and storage specific details all from the source Fact. It can however have different properties associated with it than the source.

Java class for x_fact complex type.

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

 <complexType name="x_fact">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="cube_name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 

Properties
name data type description
name string
description string
cube_name string

Example

{
  "name" : "...",
  "description" : "...",
  "cube_name" : "..."
}