tree

The following JSON schema describes the data format of the tree object type:

 Click here to expand...
 { 
   "$schema": "http://json-schema.org/draft-04/schema#", 
   "title": "KpiMgmt Tree Schema", 
   "type": "object", 
   "minProperties": 1, 
   "additionalProperties": { 
     "$ref": "#/definitions/tree" 
   }, 
   "definitions": { 
     "tree": { 
       "type": "object" 
     } 
   } 
 }

The tree object type has one or more sub-objects, consisting of properties that describe the hierarchical structure of the dimensions. In the example below, tree1 is a root node and Region, Country, and City are child nodes. Each property in the node tree must have a matching dimension object.

Example - JSON Representation

"tree": { 
	"tree1": { 
		"Region": { 
			"Country": { 
				"City": {}
			}
		} 
	} 
} 

Break