Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Excerpt

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

Scroll ignore
scroll-viewportfalse
scroll-pdffalse
scroll-officefalse
scroll-chmtrue
scroll-docbooktrue
scroll-eclipsehelptrue
scroll-epubtrue
scroll-htmltrue


falsetruefalsetruetruetruetruefalse



textEclipse





Page Properties
hiddentrue


Code Block
languagetext
themeEclipse
 { 
   "$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.

Info
titleExample - JSON Representation


Code Block
languagetext
themeEclipse
"tree": { 
	"tree1": { 
		"Region": { 
			"Country": { 
				"City": {}
			}
		} 
	} 
} 



Break