Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

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
  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.