The following JSON schema describes the data format of the tree object type: Scroll ignore |
---|
scroll-viewport | false |
---|
scroll-pdf | false |
---|
scroll-office | false |
---|
scroll-chm | true |
---|
scroll-docbook | true |
---|
scroll-eclipsehelp | true |
---|
scroll-epub | true |
---|
scroll-html | true |
---|
|
falsetruefalsetruetruetruetruefalse
textEclipse
|
Page Properties |
---|
|
Code Block |
---|
| {
"$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 |
---|
title | Example - JSON Representation |
---|
|
Code Block |
---|
| "tree": {
"tree1": {
"Region": {
"Country": {
"City": {}
}
}
}
} |
|
|