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
56
57
58
59
60
61
| {
content: {
numFound: 14, /*Number of the documents return by the service*/
docs: [ /*Json array with the documents returned by the service. Each one will contain all the fields configured to be returned by the search service.*/
{
name: "SPhone Galaxy Note 10.1"
},
{
name: "SPhone SNH-1010N Smartcam"
},
],
facets: [/*filters, will contain one entry for each facet contained in the request using the facets param or directly configured in the search service by the EB Team.*/
{
facet: "brand",
values: [
{
value: "sphone",
count: 13,
filter: "brand:sphone"
},
{
value: "SBS",
count: 1,
filter: "brand:SBS"
}
]
}
]
},
topTrends: [/*Popular trends, including category facet for the first one.*/
{
title: "<b>spho</b>ne",
title_raw: "sphone",
facets: [
{
facet: "rootCategories_facet"
values: [
{
value: "Mobile Phones",
count: 5,
filter: "{!tag=rootFilter}rootCategories_facet:Mobile Phones"
},
{
value: "Phone Accessories",
count: 3,
filter: "{!tag=rootFilter}rootCategories_facet:Phone Accessories"
}
]
}
]
},
{
title: "<b>sph</b>one galaxy",
title_raw: "sphone galaxy"
},
{
title: "tablet <b>spho</b>ne",
title_raw: "tablet sphone"
}
]
}
|