forked from vtex/openapi-schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVTEX - Intelligent Search API.json
1364 lines (1364 loc) · 69.1 KB
/
VTEX - Intelligent Search API.json
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"openapi": "3.0.0",
"info": {
"version": "0.1.12",
"title": "Intelligent Search API",
"license": {
"name": "MIT"
}
},
"servers": [
{
"url": "https://{accountName}.myvtex.com/_v/api/intelligent-search",
"description": "VTEX IO Intelligent Search server URL.",
"variables": {
"accountName": {
"default": "{accountName}",
"description": "Your VTEX account name."
}
}
}
],
"paths": {
"/top_searches": {
"get": {
"summary": "Get list of the 10 most searched terms",
"description": "Lists the 10 most searched terms.",
"parameters": [
{
"$ref": "#/components/parameters/locale"
}
],
"tags": [
"Autocomplete"
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TopSearches"
}
}
}
},
"5XX": {
"description": "Server error.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
}
}
}
},
"/autocomplete_suggestions": {
"get": {
"summary": "Get list of suggested terms and attributes similar to the search term",
"description": "Lists the suggested terms and attributes similar to the search term.",
"tags": [
"Autocomplete"
],
"parameters": [
{
"$ref": "#/components/parameters/query"
},
{
"$ref": "#/components/parameters/locale"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AutocompleteSearchSuggestions"
}
}
}
},
"5XX": {
"description": "Server error.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
}
}
}
},
"/correction_search": {
"get": {
"summary": "Get attempt of correction of a misspelled term",
"description": "Tries to correct a misspelled term from the search.",
"tags": [
"Product List Page"
],
"parameters": [
{
"$ref": "#/components/parameters/query"
},
{
"$ref": "#/components/parameters/locale"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Correction"
}
}
}
}
}
}
},
"/banners/{facets}": {
"get": {
"summary": "Get list of banners registered for query",
"description": "Lists the banners registered for a given query. Check the [configuring banners documentation](https://help.vtex.com/en/tracks/vtex-intelligent-search--19wrbB7nEQcmwzDPl1l4Cb/4ViKEivLJtJsvpaW0aqIQ5) for a full explanation of the banner feature.",
"tags": [
"Product List Page"
],
"parameters": [
{
"$ref": "#/components/parameters/query"
},
{
"$ref": "#/components/parameters/facetsPath"
},
{
"$ref": "#/components/parameters/locale"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Banners"
}
}
}
}
}
}
},
"/search_suggestions": {
"get": {
"summary": "Get list of suggested terms similar to the search term",
"description": "Lists suggested terms similar to the search term.",
"tags": [
"Product List Page"
],
"parameters": [
{
"$ref": "#/components/parameters/query"
},
{
"$ref": "#/components/parameters/locale"
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SearchSuggestions"
}
}
}
},
"5XX": {
"description": "Server error.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Error"
}
}
}
}
}
}
},
"/product_search/{facets}": {
"get": {
"summary": "Get list of products for a query",
"description": "Lists the products for a given query.",
"tags": [
"Product List Page"
],
"parameters": [
{
"$ref": "#/components/parameters/facetsPath"
},
{
"$ref": "#/components/parameters/query"
},
{
"in": "query",
"name": "simulationBehavior",
"schema": {
"type": "string",
"enum": [
"default",
"skip",
"only1P"
],
"nullable": true,
"default": "default"
},
"description": "Defines the simulation behavior.\n\n * `default` - Calls the simulation for every single seller.\n * `skip` - Never calls the simulation.\n * `only1P` - Only calls the simulation for first party sellers."
},
{
"in": "query",
"name": "count",
"description": "Number of products per page.",
"schema": {
"type": "number",
"nullable": true,
"default": 24
}
},
{
"in": "query",
"name": "page",
"description": "Current search page.",
"schema": {
"type": "number",
"nullable": true,
"default": 1
}
},
{
"in": "query",
"name": "sort",
"description": "Defines the sort type. If null, the products will be sorted by relevance.",
"schema": {
"type": "string",
"nullable": true,
"enum": [
"price:desc",
"price:asc",
"orders:desc",
"name:desc",
"name:asc",
"release:desc",
"discount:desc"
]
}
},
{
"$ref": "#/components/parameters/locale"
},
{
"$ref": "#/components/parameters/hideUnavailableItems"
}
],
"responses": {
"200": {
"description": "List of products for the given query.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ProductSearch"
}
}
}
}
}
}
},
"/facets/{facets}": {
"get": {
"summary": "Get list of the possible facets for a given query",
"description": "Lists the possible facets for a given query",
"tags": [
"Product List Page"
],
"parameters": [
{
"$ref": "#/components/parameters/facetsPath"
},
{
"$ref": "#/components/parameters/query"
},
{
"$ref": "#/components/parameters/locale"
},
{
"$ref": "#/components/parameters/hideUnavailableItems"
}
],
"responses": {
"200": {
"description": "List of facets for the given query.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/Facets"
}
}
}
}
}
}
}
},
"components": {
"parameters": {
"query": {
"in": "query",
"name": "query",
"description": "Search term. It can contain any character.",
"schema": {
"type": "string"
}
},
"facetsPath": {
"in": "path",
"name": "facets",
"required": true,
"description": "# Format\n\nThe `facets` parameter follows the format : `/${facetKey1}/${facetValue1}/${facetKey2}/${facetValue2}/.../${facetKeyN}/${facetValueN}`.\n\nThe order in which the terms appear is not relevant to the search.\n\nYou can also repeat the same `facetKey` several times for different values. For example: `category-1/shoes/color/blue/color/red/color/yellow`\n\n# General filters\n\nThe `facets` parameter also allows the following general filters.\n\n| `facetKey` | Description | Example |\n| --------------- | ------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------ |\n| `price` | Filter the search by a price range. The facet value follows the format `${minPrice}:${maxPrice}` | `/color/blue/price/100:500?query=shirt` |\n| `category-${n}` | Filter the search by a price range. The facet value follows the format `${minPrice}:${maxPrice}` | `category-1/clothing/category-2/shirts` |\n| `region-id` | Filter the search by a region id (aka regionalization). The value is the region id | `/color/blue/region-id/v2.26219C7C3DE42BAAD11CFB92CD0BFE91?query=shirt`. |\n",
"example": "category-1/clothing/category-2/shirt/category-3/man",
"schema": {
"nullable": true,
"type": "string",
"default": "/"
}
},
"locale": {
"in": "query",
"name": "locale",
"description": "Indicates the target language as a BCP 47 language code. The Intelligent Search must have indexed the account in the target language.",
"example": "en-US",
"schema": {
"type": "string",
"nullable": true
}
},
"hideUnavailableItems": {
"in": "query",
"name": "hide-unavailable-items",
"description": "Whether the result should hide unavailable items (`true`), or not (`false`)",
"schema": {
"type": "boolean",
"default": false
}
},
"fuzzy": {
"in": "query",
"name": "fuzzy",
"description": "Indicates how the search engine will correct misspelled words by using fuzzy logic. It can be a number representing the max number of misspelled letters, or the string `auto` suggesting that the search-engine should set this value by itself.",
"schema": {
"type": "string"
}
},
"operator": {
"in": "query",
"name": "operator",
"description": "Indicates how the search-engine will deal with the fullText if there is more than one word. Set `and` if the returned products must have all the words in its metadata or `or` otherwise.",
"schema": {
"type": "string",
"enum": [
"and",
"or"
]
}
}
},
"schemas": {
"AutocompleteSearchSuggestions": {
"properties": {
"searches": {
"type": "array",
"description": "List of suggested facets and terms.",
"items": {
"type": "object",
"properties": {
"term": {
"type": "string",
"description": "Search term."
},
"count": {
"type": "number",
"description": "Number of times the term was searched."
},
"attributes": {
"type": "array",
"nullable": true,
"description": "List of facets in which the term can be searched.",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string",
"description": "Facet key."
},
"value": {
"type": "string",
"description": "Facet value."
},
"labelKey": {
"type": "string",
"description": "Human-readable format of the facet key."
},
"labelValue": {
"type": "string",
"description": "Human-readable format of the facet value."
}
}
}
}
}
}
}
},
"example": {
"searches": [
{
"term": "tv",
"count": 28861,
"attributes": [
{
"key": "departamento",
"value": "tvs-e-video",
"labelKey": "Departamento",
"labelValue": "TVs e Vídeo"
},
{
"key": "categoria",
"value": "tvs",
"labelKey": "Categoria",
"labelValue": "TVs"
},
{
"key": "subcategoria",
"value": "receptor-de-controle-de-acesso",
"labelKey": "Subcategoria",
"labelValue": "Receptor de Controle de Acesso"
}
]
},
{
"term": "smarth tv",
"count": 2308
},
{
"term": "painel para tv",
"count": 975
},
{
"term": "rack tv",
"count": 589
}
]
}
},
"TopSearches": {
"type": "object",
"properties": {
"searches": {
"type": "array",
"description": "A list of the 10 most searched terms.",
"minItems": 10,
"maxItems": 10,
"items": {
"type": "object",
"properties": {
"term": {
"type": "string",
"description": "Search term."
},
"count": {
"type": "number",
"description": "Number of times the term was searched."
}
}
}
}
},
"example": {
"searches": [
{
"term": "home",
"count": 14
},
{
"term": "shirt",
"count": 10
},
{
"term": "top",
"count": 9
},
{
"term": "tops",
"count": 6
},
{
"term": "camera",
"count": 5
},
{
"term": "kit",
"count": 5
},
{
"term": "work shirt",
"count": 2
},
{
"term": "shirts",
"count": 2
},
{
"term": "clothing",
"count": 2
},
{
"term": "classic shoes",
"count": 1
}
]
}
},
"Correction": {
"properties": {
"correction": {
"type": "object",
"description": "Object that indicates if the term was misspelled and suggests a possible correction.",
"properties": {
"misspelled": {
"type": "boolean",
"description": "Whether the term was misspelled (`true`) or not (`false`)."
},
"correction": {
"type": "boolean",
"description": "Whether the API was able to suggest a correction (`true`) or not (`false`)."
},
"text": {
"type": "string",
"description": "The corrected term. If the API was not able to correct the term, it will show the original search term."
},
"highlighted": {
"type": "string",
"description": "The same as `text`, but it highlights the corrected word. Useful when there is more than one word."
}
}
}
},
"example": {
"correction": {
"correction": true,
"misspelled": true,
"text": "mountain bike",
"highlighted": "mountain <em>bike</em>"
}
}
},
"Banners": {
"properties": {
"banners": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Banner id."
},
"name": {
"type": "string",
"description": "Banner name."
},
"area": {
"type": "string",
"description": "Banner area."
},
"html": {
"type": "string",
"description": "Banner HTML."
}
}
}
}
}
},
"SearchSuggestions": {
"properties": {
"searches": {
"type": "array",
"description": "List of suggested terms.",
"items": {
"type": "object",
"properties": {
"term": {
"type": "string",
"description": "Search term."
},
"count": {
"type": "number",
"description": "Number of times the term was searched."
}
}
}
}
},
"example": {
"searches": [
{
"term": "mountain bike",
"count": 66
},
{
"term": "bike helmet",
"count": 121
},
{
"term": "electric bike",
"count": 78
},
{
"term": "bike rack",
"count": 161
},
{
"term": "road bike",
"count": 28
}
]
}
},
"ProductSearch": {
"example": {
"products": [
{
"cacheId": "sp-2000003",
"productId": "2000003",
"description": "With this beautiful design piece you will never miss an appointment anymore. Yay.",
"productName": "Top Wood Clock",
"productReference": "clock120",
"linkText": "wood-clock",
"brand": "Sony",
"brandId": 2000005,
"link": "/wood-clock/p",
"categories": [
"/Home & Decor/"
],
"categoryId": "40",
"categoriesIds": [
"/40/"
],
"priceRange": {
"sellingPrice": {
"highPrice": 197.99,
"lowPrice": 197.99
},
"listPrice": {
"highPrice": 197.99,
"lowPrice": 197.99
}
},
"specificationGroups": [
{
"originalName": "allSpecifications",
"name": "allSpecifications",
"specifications": [
{
"originalName": "sellerId",
"name": "sellerId",
"values": [
"1"
]
}
]
}
],
"skuSpecifications": [],
"productClusters": [
{
"id": "1970",
"name": "Summer"
}
],
"clusterHighlights": [
{
"id": "1970",
"name": "Summer"
}
],
"properties": [
{
"name": "sellerId",
"originalName": "sellerId",
"values": [
"1"
]
}
],
"items": [
{
"sellers": [
{
"sellerId": "1",
"sellerName": "VTEX",
"addToCartLink": "",
"sellerDefault": true,
"commertialOffer": {
"DeliverySlaSamplesPerRegion": {},
"DeliverySlaSamples": [],
"AvailableQuantity": 10000,
"discountHighlights": [],
"Installments": [
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "American Express à vista",
"PaymentSystemName": "American Express"
},
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "Visa à vista",
"PaymentSystemName": "Visa"
},
{
"Value": 98.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 2,
"Name": "Visa 2 vezes sem juros",
"PaymentSystemName": "Visa"
},
{
"Value": 65.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 3,
"Name": "Visa 3 vezes sem juros",
"PaymentSystemName": "Visa"
},
{
"Value": 49.49,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 4,
"Name": "Visa 4 vezes sem juros",
"PaymentSystemName": "Visa"
},
{
"Value": 39.59,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 5,
"Name": "Visa 5 vezes sem juros",
"PaymentSystemName": "Visa"
},
{
"Value": 32.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 6,
"Name": "Visa 6 vezes sem juros",
"PaymentSystemName": "Visa"
},
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "Diners à vista",
"PaymentSystemName": "Diners"
},
{
"Value": 100.48,
"InterestRate": 100,
"TotalValuePlusInterestRate": 200.96,
"NumberOfInstallments": 2,
"Name": "Diners 2 vezes com juros",
"PaymentSystemName": "Diners"
},
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "Mastercard à vista",
"PaymentSystemName": "Mastercard"
},
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "Boleto Bancário à vista",
"PaymentSystemName": "Boleto Bancário"
},
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "Vale à vista",
"PaymentSystemName": "Vale"
},
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "Promissory à vista",
"PaymentSystemName": "Promissory"
},
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "Customer Credit à vista",
"PaymentSystemName": "Customer Credit"
},
{
"Value": 98.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 2,
"Name": "Customer Credit 2 vezes sem juros",
"PaymentSystemName": "Customer Credit"
},
{
"Value": 67.97,
"InterestRate": 100,
"TotalValuePlusInterestRate": 203.91,
"NumberOfInstallments": 3,
"Name": "Customer Credit 3 vezes com juros",
"PaymentSystemName": "Customer Credit"
},
{
"Value": 197.99,
"InterestRate": 0,
"TotalValuePlusInterestRate": 197.99,
"NumberOfInstallments": 1,
"Name": "Free à vista",
"PaymentSystemName": "Free"
}
],
"Price": 197.99,
"ListPrice": 197.99,
"spotPrice": 197.99,
"taxPercentage": 0,
"PriceWithoutDiscount": 197.99,
"Tax": 0,
"GiftSkuIds": [],
"BuyTogether": [],
"ItemMetadataAttachment": [],
"RewardValue": 0,
"PriceValidUntil": "2023-04-01T13:13:20Z",
"GetInfoErrorMessage": null,
"CacheVersionUsedToCallCheckout": "",
"teasers": [
{
"name": "8% Boleto",
"conditions": {
"minimumQuantity": 0,
"parameters": [
{
"name": "PaymentMethodId",
"value": "6"
}
]
},
"effects": {
"parameters": [
{
"name": "PercentualDiscount",
"value": "8.0"
}
]
}
}
]
}
}
],
"images": [
{
"imageId": "155484",
"cacheId": "155484",
"imageTag": "",
"imageLabel": "",
"imageText": "",
"imageUrl": "https://storecomponents.vtexassets.com/arquivos/ids/155484/Frame.jpg?v=636793817478300000"
},
{
"imageId": "155485",
"cacheId": "155485",
"imageTag": "",
"imageLabel": "",
"imageText": "",
"imageUrl": "https://storecomponents.vtexassets.com/arquivos/ids/155485/Frame-1.jpg?v=636793817642000000"
},
{
"imageId": "155486",
"cacheId": "155486",
"imageTag": "",
"imageLabel": "",
"imageText": "",
"imageUrl": "https://storecomponents.vtexassets.com/arquivos/ids/155486/Frame-2.jpg?v=636793817785530000"
}
],
"itemId": "2000534",
"name": "1",
"nameComplete": "Top Wood Clock 1",
"complementName": "",
"referenceId": [
{
"Key": "RefId",
"Value": "16001"
}
],
"measurementUnit": "un",
"unitMultiplier": 1,
"variations": [],
"ean": "16001",
"modalType": "",
"videos": [],
"attachments": [],
"isKit": false
}
],
"origin": "intelligent-search"
},
{
"cacheId": "sp-2000214",
"productId": "2000214",
"description": "",
"productName": "kevin1",
"linkText": "kevin1-lkn",
"brand": "Sony",
"brandId": 2000005,
"link": "/kevin1-lkn/p",
"categories": [
"/Home & Decor/"
],
"categoryId": "40",
"categoriesIds": [
"/40/"
],
"priceRange": {
"sellingPrice": {
"highPrice": 10,
"lowPrice": 10
},
"listPrice": {
"highPrice": 10,
"lowPrice": 10
}
},
"specificationGroups": [
{
"originalName": "allSpecifications",
"name": "allSpecifications",
"specifications": [
{
"originalName": "sellerId",
"name": "sellerId",
"values": [
"1"
]
}
]
}
],
"skuSpecifications": [],
"productClusters": [],
"clusterHighlights": [],
"properties": [
{
"name": "sellerId",
"originalName": "sellerId",
"values": [
"1"