Taxonomy
Log in to add to favouritesPage last updated 09 July 2020
Properties
| 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
{
"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": []
}
]
}
]
}{
"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": []
}
]
}
]
}