Taxonomy
Log in to add to favouritesProperties
Name | Type | Description | Example |
---|---|---|---|
key | string | The taxonomy key | 0/1 |
name | string | The localized taxonomy name | |
path | string | The full taxonomy node path | Root/Movies/Genres |
hasChildren | boolean | Whether or not the node has any child nodes | |
children | object[...] | A list of child taxonomy nodes |
Example
This example shows a taxonomy node object with child taxonomy nodes
{
"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
{
"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": []
}
]
}
]
}