AMALYZE Falcon API
Browsenode Object
Response
JavaScript
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
{ "id": "10733135031", "name": "Handmade Produkte > Kategorien > Schmuck > Ohrringe", "nodes": [ { "name": "Handmade Produkte", "id": "9699311031", "siblings": [ {...}, {...} ] }, { "name": "Kategorien", "id": "9699312031", "siblings": [ { "id": "5866098031", "name": "Gewerbe", "isMain": true, "hasChildren": true }, { "id": "72921031", "name": "Sonstiges", "isMain": true, "hasChildren": false }, { "id": "213083031", "name": "Beleuchtung", "isMain": true, "hasChildren": true } ] }, { "name": "Schmuck", "id": "10733080031", "siblings": [ {...}, {...} ] }, { "name": "Ohrringe", "id": "10733135031", "siblings": [ {...}, {...} ] } ], "isMain": false } |
Property | Type | Description | Comment |
id | string | amazons id for the browsenode | 0.2.4 |
name | string | String containing the name (including full path) for this browsenode | 0.2.4 |
nodes | array | Array containing the browsenode’s path | 0.2.4 |
nodes.name | string | String containing the node’s name | 0.2.4 |
nodes.id | string | String containing the node’s id | 0.2.4 |
nodes.siblings | array | Array containg the siblings (only available for research.browsenodes.node ) | 0.5.0 |
nodes.siblings.id | string | amazons id for the sibling | 0.5.0 |
nodes.siblings.name | string | String containing the siblings name | 0.5.0 |
nodes.siblings.isMain | boolean | Indicates if sibling is a main-category | 0.5.0 |
nodes.siblings.hasChildren | boolean | Indicates if sibling has sub-categories | 0.5.0 |
isMain | boolean | Indicates if browsenode is a main-category | 0.2.4 |
hasChildren | boolean | Indicates if browsenode has sub-categories | 0.2.4 |
Updates / Changes
Version | Description |
0.5.0 | added siblings |
0.2.4 | created |