Skip to main content

Properties

NameTypeDescriptionExample
keystringThe taxonomy key0/1
namestringThe localized taxonomy name
pathstringThe full taxonomy node pathRoot/Movies/Genres
hasChildrenbooleanWhether or not the node has any child nodes
childrenobject[...]A list of child taxonomy nodes

Example

This example shows a taxonomy node object with child taxonomy nodes

JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ "key": "0", "name": "Root", "path": "Root", "hasChildren": true, "children": [ { "key": "0/1", "name": "Movies", "path": "Root/Movies", "hasChildren": true, "children": [ { "key": "0/1/2", "name": "Genres", "path": "Root/Movies/Genres", "hasChildren": false, "children": [] } ] } ] }

This example shows a taxonomy node object with child taxonomy nodes

JSON
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ "key": "0", "name": "Root", "path": "Root", "hasChildren": true, "children": [ { "key": "0/1", "name": "Movies", "path": "Root/Movies", "hasChildren": true, "children": [ { "key": "0/1/2", "name": "Genres", "path": "Root/Movies/Genres", "hasChildren": false, "children": [] } ] } ] }

Still need help?

New support request