Skip to content

Instantly share code, notes, and snippets.

@georgkreimer
Created September 5, 2013 01:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save georgkreimer/6444910 to your computer and use it in GitHub Desktop.
Save georgkreimer/6444910 to your computer and use it in GitHub Desktop.
embedded issue: "has no method 'map'"
App = Ember.Application.create({
rootElement: '#application',
LOG_TRANSITIONS: true,
LOG_VIEW_LOOKUPS: true,
LOG_ACTIVE_GENERATION: true
});
App.Router.reopen({
// location: 'history'
});
App.Adapter = DS.RESTAdapter.reopen({
namespace: 'api/v1/electronics'
});
/*
Models
*/
App.RawTransform = DS.Transform.extend({
deserialize: function(serialized) {
return serialized;
},
serialize: function(deserialized) {
return deserialized;
}
});
App.Image = DS.Model.extend({});
App.Product = DS.Model.extend({
averageRating: DS.attr('string'),
baseOptions: DS.attr('raw'),
currencyIso: DS.attr('raw'),
description: DS.attr('string'),
images: DS.hasMany('image'),
name: DS.attr('string'),
manufacturer: DS.attr('string'),
summary: DS.attr('string'),
price: DS.attr('raw'),
stock: DS.attr('raw'),
volumePricesFlag: DS.attr('boolean')
});
App.Adapter.map('product', {
images: { embedded: 'always' }
});
App.Sort = DS.Model.extend({
selected: DS.attr('boolean'),
name: DS.attr('string'),
code: DS.attr('string')
});
App.Pagination = DS.Model.extend({
sort: DS.attr('raw'),
pageSize: DS.attr('number'),
currentPage: DS.attr('number'),
totalResults: DS.attr('number'),
totalPages: DS.attr('number')
});
App.CurrentQuery = DS.Model.extend({});
App.Breadcrumb = DS.Model.extend({});
App.Facet = DS.Model.extend({
multiSelect: DS.attr('boolean'),
category: DS.attr('boolean'),
values: DS.attr('raw'),
priority: DS.attr('number'),
name: DS.attr('string')
});
/*
Routes
*/
App.Router.map(function() {
this.resource('products');
});
App.IndexRoute = Ember.Route.extend({
redirect: function() {
this.transitionTo('products');
}
});
App.ProductsRoute = Ember.Route.extend({
setupController: function(controller, model) {
// Set the ProductsController's `title`
controller.set('title', 'Look at all the products');
},
renderTemplate: function() {
this.render({ outlet: 'products' });
},
model: function() {
return this.get('store').findAll('product');
}
});
App.ProductRoute = Ember.Route.extend({
model: function(params) {
return this.get('store').find('product', params.product_id);
}
});
DEBUG: ------------------------------- ember.js:394
DEBUG: Ember.VERSION : 1.0.0 ember.js:394
DEBUG: Handlebars.VERSION : 1.0.0 ember.js:394
DEBUG: jQuery.VERSION : 1.10.2 ember.js:394
DEBUG: ------------------------------- ember.js:394
Uncaught TypeError: Object function () {
if (!wasApplied) {
Class.proto(); // prepare prototype...
}
o_defineProperty(this, GUID_KEY, undefinedDescriptor);
o_defineProperty(this, '_super', undefinedDescriptor);
var m = meta(this), proto = m.proto;
m.proto = this;
if (initMixins) {
// capture locally so we can clear the closed over variable
var mixins = initMixins;
initMixins = null;
this.reopen.apply(this, mixins);
}
if (initProperties) {
// capture locally so we can clear the closed over variable
var props = initProperties;
initProperties = null;
var concatenatedProperties = this.concatenatedProperties;
for (var i = 0, l = props.length; i < l; i++) {
var properties = props[i];
Ember.assert("Ember.Object.create no longer supports mixing in other definitions, use createWithMixins instead.", !(properties instanceof Ember.Mixin));
for (var keyName in properties) {
if (!properties.hasOwnProperty(keyName)) { continue; }
var value = properties[keyName],
IS_BINDING = Ember.IS_BINDING;
if (IS_BINDING.test(keyName)) {
var bindings = m.bindings;
if (!bindings) {
bindings = m.bindings = {};
} else if (!m.hasOwnProperty('bindings')) {
bindings = m.bindings = o_create(m.bindings);
}
bindings[keyName] = value;
}
var desc = m.descs[keyName];
Ember.assert("Ember.Object.create no longer supports defining computed properties.", !(value instanceof Ember.ComputedProperty));
Ember.assert("Ember.Object.create no longer supports defining methods that call _super.", !(typeof value === 'function' && value.toString().indexOf('._super') !== -1));
Ember.assert("`actions` must be provided at extend time, not at create time, when Ember.ActionHandler is used (i.e. views, controllers & routes).", !((keyName === 'actions') && Ember.ActionHandler.detect(this)));
if (concatenatedProperties && indexOf(concatenatedProperties, keyName) >= 0) {
var baseValue = this[keyName];
if (baseValue) {
if ('function' === typeof baseValue.concat) {
value = baseValue.concat(value);
} else {
value = Ember.makeArray(baseValue).concat(value);
}
} else {
value = Ember.makeArray(value);
}
}
if (desc) {
desc.set(this, keyName, value);
} else {
if (typeof this.setUnknownProperty === 'function' && !(keyName in this)) {
this.setUnknownProperty(keyName, value);
} else if (MANDATORY_SETTER) {
Ember.defineProperty(this, keyName, null, value); // setup mandatory setter
} else {
this[keyName] = value;
}
}
}
}
}
finishPartial(this, m);
this.init.apply(this, arguments);
m.proto = proto;
finishChains(this);
sendEvent(this, "init");
} has no method 'map' application.js:45
generated -> route:application Object {fullName: "route:application"} ember.js:394
generated -> route:index Object {fullName: "route:index"} ember.js:394
generated -> controller:application Object {fullName: "controller:application"} ember.js:394
Rendering application with default view <(subclass of Ember.View):ember254> Object {fullName: "view:application"} ember.js:394
generated -> controller:index Object {fullName: "controller:index"} ember.js:394
Could not find "index" template or view. Nothing will be rendered Object {fullName: "template:index"} ember.js:394
Transitioned into 'index' ember.js:394
Ember Debugger Active
{
"products": [
{
"summary": "Enjoy unprecedented mobile video performance and natural video conversations! QuickCam® for Notebooks Pro is an ultra-portable, high performance webcam with a groundbreaking design.",
"averageRating": 5.0,
"id": "479742",
"url": "/Open-Catalogue/Cameras/Webcams/QuickCam-for-Notebooks-Pro/p/479742",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "86.37",
"formattedValue": "$86.37"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "Enjoy unprecedented mobile video performance and natural video conversations! QuickCam® for Notebooks Pro is an ultra-portable, high performance webcam with a groundbreaking design. It captures HD resolution videos at 960X720 or up to 4 megapixel images (software enhanced). RightLight™ 2 technology adjusts intelligently to produce the best possible images regardless of your lighting. The integrated microphone with RightSound™ technology ensures your voice comes through clear and echo-free wit...",
"manufacturer": "Logitech",
"volumePricesFlag": false,
"name": "QuickCam for Notebooks Pro",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/479742-3034.jpg?context=bWFzdGVyfGltYWdlc3wyMDc0fGltYWdlL2pwZWd8aW1hZ2VzL2g5Ny9oNjcvODc5NjI5NTQ2Mjk0Mi5qcGd8YzQ5YjAyZjBmY2ZkOTdlOWY1ZDgyZmYxOGEyODk1MDA0MmZlODM0YmY3OTcxYTg3ODUyZTUwOTYxM2E4M2RkMA"
}
]
},
{
"averageRating": 5.0,
"id": "1377492",
"url": "/Open-Catalogue/Cameras/Webcams/Micro-Webcam/p/1377492",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "79.11",
"formattedValue": "$79.11"
},
"stock": {
"stockLevelStatus": {
"code": "lowStock",
"codeLowerCase": "lowstock"
},
"stockLevel": 2
},
"manufacturer": "Targus",
"volumePricesFlag": false,
"name": "Micro Webcam",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/1377492-Targus-AVC05EU-911.jpeg.jpg?context=bWFzdGVyfGltYWdlc3wxNzgzfGltYWdlL2pwZWd8aW1hZ2VzL2hhNy9oYTYvODc5NjI3Nzk2NDgzMC5qcGd8MjcyY2I4YjQ5ZTMxNDIzNjVmODZkNWI2OTQ4NDAzZjI2YThkNmY5ZDQ0MzQ0MjkyNmZlOGVmYzFlMmIxMjcwOQ"
}
]
},
{
"summary": "Digital SLR Camera DSLR-A100H",
"classifications": [
{
"name": "Display",
"features": [
{
"range": false,
"name": "Display",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "TFT"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/41.display, 83"
}
],
"code": "41"
},
{
"name": "Memory",
"features": [
{
"range": false,
"name": "Compatible memory cards",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "cf,memory stick (ms),ms pro,microdrive"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/42.compatible memory cards, 730"
}
],
"code": "42"
}
],
"averageRating": 4.833333333333333,
"id": "816780",
"url": "/Open-Catalogue/Cameras/Digital-Cameras/Digital-SLR/DSLR-A100H/p/816780",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "1086.0",
"formattedValue": "$1,086.00"
},
"stock": {
"stockLevelStatus": {
"code": "lowStock",
"codeLowerCase": "lowstock"
},
"stockLevel": 2
},
"description": "10.2 effective megapixel Digital Single Lens Reflex (D-SLR) camera. High Zoom Lens kit (DT 18-200mm F3.5-6.3 lens). Generous zoom range from a single, compact lens. A great choice for holidays or photo assignments when you need to travel light without compromising creative possibilities.Features:-Compatible with more than 20 α-mount lenses from Sony and Carl Zeiss plus Konica Minolta lenses with A-type bayonet mount. -10.2 effective megapixel sensor with high-performance BIONZ image processor...",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "DSLR-A100H",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/816780-2831.jpg?context=bWFzdGVyfGltYWdlc3wyNDUyfGltYWdlL2pwZWd8aW1hZ2VzL2hlYi9oMDEvODc5NjMwMDY3MzA1NC5qcGd8OWNmMGZkZDNmZWZhNWMzOGNiN2RlYWZiMjZlNzNhMWI1YzI0OGE3M2ZiMWNkNDhkYjA4YmIyNzIzMDRiZDgzNw"
}
],
"potentialPromotions": [
{
"code": "PerfectPartnerElectronics"
}
]
},
{
"summary": "DC Car Battery Adapter",
"averageRating": 4.785714285714286,
"id": "107701",
"url": "/Open-Catalogue/Components/Power-Supplies/Power-Adapters-%26-Inverters/DC-Car-Battery-Adapter/p/107701",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "179.93",
"formattedValue": "$179.93"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "It's time to take a road trip and you want to capture the whole event with your HandyCam® camcorder but you know the battery isn't going to last the whole trip. Not a problem with the DCC-L50B Car Battery Adaptor. You can power your HandyCam® camcorder directly from your car's cigarette lighter socket and record your adventure non-stop!Includes the DK215 and DK235 connecting cords",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "DC Car Battery Adapter",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/107701-5509.jpg?context=bWFzdGVyfGltYWdlc3wyMTI3fGltYWdlL2pwZWd8aW1hZ2VzL2gzZi9oYjQvODc5NjI3NjI5MzY2Mi5qcGd8YWI3MjQ4NzA0NWNhOTc2MWI1NzY3YTAzMmRkZWIwZTZiYjg2ZDU1MjkyZjE0OGVhMzI1NWI5ZTVkNTI3YmE5ZQ"
}
]
},
{
"summary": "SD High Capacity Card 8GB",
"averageRating": 4.764705882352941,
"id": "1366053",
"url": "/Open-Catalogue/Data-storage/Flash-Memory/SD-High-Capacity-Card-8GB/p/1366053",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "20.0",
"formattedValue": "$20.00"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "Create it… Store it… Share it, with an ICIDU SDHC Card. Save image, sound and data files on compatible devices such as digital cameras, camcorders and MP3-players.",
"manufacturer": "ICIDU",
"volumePricesFlag": false,
"name": "SD High Capacity Card 8GB",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/1366053-4247.jpg?context=bWFzdGVyfGltYWdlc3wzMDUzfGltYWdlL2pwZWd8aW1hZ2VzL2hkYi9oMmYvODc5NjI3Nzg2NjUyNi5qcGd8N2VkYTM4NjNiOTBiNzZjY2I3MmFjNDIzYTZjZWE1NGVjNTgyOTc2ZDNlOTU4ODYxODExYmFlMWQ2ZGE5NDA5Ng"
}
],
"potentialPromotions": [
{
"code": "BOGOFElectronics"
}
]
},
{
"summary": "The NV3 is not only a great digital camera with 7.2 mega pixels but also a perfect MP3 player, Portable Multimedia Player, Digital camcorder, Text Viewer, and much more.",
"classifications": [
{
"name": "Technical details",
"features": [
{
"range": false,
"name": "Picture mode",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "[Auto, Program, ASR, Scene]"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/622.picture mode, 2030"
}
],
"code": "622"
},
{
"name": "Display",
"features": [
{
"range": false,
"name": "Display",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "TFT LCD"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/41.display, 83"
}
],
"code": "41"
},
{
"name": "Memory",
"features": [
{
"range": false,
"name": "Compatible memory cards",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "sd,mmc"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/42.compatible memory cards, 730"
}
],
"code": "42"
}
],
"averageRating": 4.636363636363637,
"id": "492274",
"url": "/Open-Catalogue/Cameras/Digital-Cameras/Digital-Compacts/NV3/p/492274",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "249.99",
"formattedValue": "$249.99"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "Multifunction Convergence digital cameraThe NV3 is not only a great digital camera with 7.2 mega pixels but also a perfect MP3 player, Portable Multimedia Player, Digital camcorder, Text Viewer, and much more.Enjoy music & movies and more in immersive two-channel soundThe NV3 also has stereo speakers built in for a richer sound experience. It means you can enjoy movies with realistic sound. Moreover, NV3 has a special audio processing chip delivering 3D, Jazz, Rock, and other sound effects.Wi...",
"manufacturer": "Samsung",
"volumePricesFlag": false,
"name": "NV3",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/492274-4077.jpg?context=bWFzdGVyfGltYWdlc3wyMTQyfGltYWdlL2pwZWd8aW1hZ2VzL2g3Ni9oNjgvODc5NjI5NzAzNTgwNi5qcGd8NmRkYmI2OTAzYzcxMDFjZDA3MGI5MThkZTE3ZmZhOWVmNWJmY2M1MDJkNDhlNmM5N2UxNzRhMmEwNWEwMWQ1NA"
}
]
},
{
"summary": "100K Webcam with blue LED & Rubber coating WITH CLIP",
"averageRating": 4.625,
"id": "280916",
"url": "/Open-Catalogue/Cameras/Webcams/Web-Camera-%28100KpixelM-CMOS%2C-640X480%2C-USB-1-1%29-Black/p/280916",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "8.2",
"formattedValue": "$8.20"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "Canyon is a growing world standard company that manufactures computer components and peripherals. Canyon products provide top quality, high performance and usability, while offered services and technical support make Canyon products fully customer-orientated.",
"manufacturer": "Canyon",
"volumePricesFlag": false,
"name": "Web Camera (100KpixelM CMOS, 640X480, USB 1.1) Black",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/280916-8030.jpg?context=bWFzdGVyfGltYWdlc3wxNzkzfGltYWdlL2pwZWd8aW1hZ2VzL2g1NS9oNWIvODc5NjI4Nzc2MjQ2Mi5qcGd8MTU5NjBjNGQyZGYwNzI4M2U5NjNmYjEwMDI4ODc4MzYzZjczNTc1YWE1ZTgwYzY5NTUwMzU3NjYzM2ZmZWQ0Mw"
}
]
},
{
"summary": "Battery Charger 4xAA/AAA",
"averageRating": 4.619047619047619,
"id": "1312564",
"url": "/Open-Catalogue/Components/Power-Supplies/Battery-Chargers/Battery-Charger-4xAA-AAA/p/1312564",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "7.61",
"formattedValue": "$7.61"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "Features:- Useable for AA, AAA and 9V batteries Ni-CD and Ni-MH.- Charging 2 or 4 batteries at the same time.- LED indicator for charging.- Auto Off when batteries are fully charged.",
"manufacturer": "Sweex",
"volumePricesFlag": false,
"name": "Battery Charger 4xAA/AAA",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/1312564-2812.jpg?context=bWFzdGVyfGltYWdlc3wyNDEyfGltYWdlL2pwZWd8aW1hZ2VzL2g1NC9oOTAvODc5NjI3Njg1MDcxOC5qcGd8MWM0NWZlMjVkZjRmNGFkYjQxMTk4MDI0MzgxMTkzN2FkNjZhM2FiYWVjMTAyNmI0NmYzNGIwOWVjMDRjNjU3Zg"
}
]
},
{
"summary": "Cyber-shot W80 - Stylish aluminium camera, with 7.2 effective megapixels, HD output, double anti-blur and face detection technologies, ZEISS 3x optical zoom lens, 2.5-inch LCD screen, viewfinder and STAMINA battery life.",
"classifications": [
{
"name": "Display",
"features": [
{
"range": false,
"name": "Display",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "TFT"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/41.display, 83"
}
],
"code": "41"
},
{
"name": "Memory",
"features": [
{
"range": false,
"name": "Compatible memory cards",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "memory stick (ms),ms pro"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/42.compatible memory cards, 730"
}
],
"code": "42"
}
],
"averageRating": 4.615384615384615,
"id": "816261",
"url": "/Open-Catalogue/Cameras/Digital-Cameras/Digital-Compacts/Cyber-shot-W80%2C-Black/p/816261",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "216.0",
"formattedValue": "$216.00"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "-7,2 effective megapixels. -High Definition output for displaying still images on a HD TV (using optional cable). -Double Anti-blur technology combining Super SteadyShot and ISO 3200 high sensitivity (REI).",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "Cyber-shot W80, Black",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/816261-3015.jpg?context=bWFzdGVyfGltYWdlc3wyNzA4fGltYWdlL2pwZWd8aW1hZ2VzL2g4MS9oNTEvODc5NjMwMDM0NTM3NC5qcGd8ZDVjNjRhNWQ0NTBlZmIyODgxNDkxMzUxMDgyM2I4MTQ4ZGFlY2YwOWE4Nzg4YmM1Mjc5YWNkOTYxYWRiNDAzOQ"
}
]
},
{
"summary": "ACC-CBG - Cyber-shot Starter Kit: Case + Battery",
"averageRating": 4.611111111111111,
"id": "429430",
"url": "/Open-Catalogue/Cameras/Camera-Accessories-%26-Supplies/Camera-Kits/Rechargeable-Battery-Pack-NP-BG1/p/429430",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "65.51",
"formattedValue": "$65.51"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "-Lithium ion Type G battery NP-BG1: 3.6V, 3.4Wh, 960mAh.-Case LCS-CST: general carrying case for slim Cyber-shot.",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "Rechargeable Battery Pack NP-BG1",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/429430-1816.jpg?context=bWFzdGVyfGltYWdlc3wyMTk3fGltYWdlL2pwZWd8aW1hZ2VzL2hjOC9oNjEvODc5NjI5Mzk1NTYxNC5qcGd8ZTk5ZDIxZDhlODA2NTdmZWNlMGRiYWY5ZDY0M2IwYmY1YzMyM2MxNTNkZGU0M2VmYTE4OGJhZTBmMGYwNThlOA"
}
]
},
{
"summary": "MSX-M4GSX - 4GB Memory Stick Pro Duo + adapter",
"averageRating": 4.6,
"id": "479956",
"url": "/Open-Catalogue/Data-storage/Flash-Memory/4GB-Memory-Stick-Pro-Duo-%2B-adapter/p/479956",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "102.37",
"formattedValue": "$102.37"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "The MSX-M4GS Memory Stick PRO Duo™ media from Sony gives you maximum storage for your compact digital camera, portable audio device, or PSP™ Handheld Entertainment System. With a huge total storage capacity of 4 gigabytes and an wide operating temperature range of -13° F to 185° Fahrenheit, the MSX-M4GS provides you with durable, high capacity storage for your digital files. With the included adaptor, the MSX-M4GS can be used in most devices that use full-sized Memory Stick PRO™ media, making...",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "4GB Memory Stick Pro Duo + adapter",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/479956-9835.jpg?context=bWFzdGVyfGltYWdlc3wyMDQwfGltYWdlL2pwZWd8aW1hZ2VzL2g1Yi9oNDQvODc5NjI5NTcyNTA4Ni5qcGd8MGZlZmVjOGUzYmIzMjFmMWRiZTU5NTliYmMzYzZjYTU4NGZiNWFjNDdjZTNhOTlkODQ3MjVlZjk5NjJiNmIxMg"
}
],
"potentialPromotions": [
{
"code": "BOGOFElectronics"
}
]
},
{
"summary": "InfoLITHIUM™ H Series Battery",
"averageRating": 4.588235294117647,
"id": "824267",
"url": "/Open-Catalogue/Components/Power-Supplies/Rechargeable-Batteries/InfoLITHIUM%E2%84%A2-H-Series-Battery/p/824267",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "283.85",
"formattedValue": "$283.85"
},
"stock": {
"stockLevelStatus": {
"code": "lowStock",
"codeLowerCase": "lowstock"
},
"stockLevel": 2
},
"description": "-Never miss a precious moment with STAMINA super long battery life. -New ActiFORCE battery technology for higher capacity, faster recharging time and more accurate and fast remaining capacity indication. -Hybrid Lithium-ion cells with no ‘Memory",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "InfoLITHIUM™ H Series Battery",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/824267-8006.jpg?context=bWFzdGVyfGltYWdlc3wyMTM3fGltYWdlL2pwZWd8aW1hZ2VzL2gxNy9oZTYvODc5NjMwMTM2MTE4Mi5qcGd8ZDM5ZmE2ODlkYzliNjljNzU0YzIxNDA4MTYzNmY0NzU2NmRkOGYyOTE1ODY5MjUzZjczZWEwNTRhMDhhZjRkMA"
}
]
},
{
"summary": "Accessory value kit for Handycam",
"averageRating": 4.576923076923077,
"id": "861175",
"url": "/Open-Catalogue/Cameras/Camera-Accessories-%26-Supplies/Camera-Kits/InfoLITHIUM%E2%84%A2-H-Series-Battery/p/861175",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "184.58",
"formattedValue": "$184.58"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "-Accessory value kit for Handycam models using H or P series batteries. -An affordable ready made solution that includes the essential accessories for every camcorder user. -Carrying case for convenient storage and protection. -Spare high c",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "InfoLITHIUM™ H Series Battery",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/861175-430.jpg?context=bWFzdGVyfGltYWdlc3wyNTM4fGltYWdlL2pwZWd8aW1hZ2VzL2hkYy9oY2YvODc5NjMwMTIzMDExMC5qcGd8MjNiNjZiYjcxNDgwMWY2NWExODJjNTgwOTYyM2YzNDQ0M2NlMjU1YTliMzkzMzE2NzMyZTVhZDRmZjAwMmEyZg"
}
]
},
{
"summary": "Gigashot K40H 80GB HDD / 0.9 Mega Pixel",
"averageRating": 4.571428571428571,
"id": "1432722",
"url": "/Open-Catalogue/Cameras/Hand-held-Camcorders/Gigashot-K80H/p/1432722",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "396.88",
"formattedValue": "$396.88"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "Picture this. Small made smaller, light made lighter and bright made brighter. Now picture them all in high definition, helping you capture memories in the palm of your hand. Introducing the Toshiba Gigashot K Series, one of the smallest, lightest and most versatile HD digital camcorders in the world.",
"manufacturer": "Toshiba",
"volumePricesFlag": false,
"name": "Gigashot K80H",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/1432722-606.jpg?context=bWFzdGVyfGltYWdlc3wyMjM4fGltYWdlL2pwZWd8aW1hZ2VzL2hmNi9oMWEvODc5NjI3ODgxNjc5OC5qcGd8YTNmMmJhY2NmZDRkZTY2YTY3ZmM4YWM3NzIxYTAwODkwYzM2ZGMwMGI0ODZkMDRjYmI1MjJlZDU2NDE2ODFlNg"
}
]
},
{
"summary": "InfoLITHIUM™ H Series Battery",
"averageRating": 4.565217391304348,
"id": "805693",
"url": "/Open-Catalogue/Components/Power-Supplies/Rechargeable-Batteries/InfoLITHIUM%E2%84%A2-H-Series-Battery/p/805693",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "136.5",
"formattedValue": "$136.50"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "-Never miss a precious moment with STAMINA super long battery life. -New ActiFORCE battery technology for higher capacity, faster recharging time and more accurate and fast remaining capacity indication. -Hybrid Lithium-ion cells with no ‘Memory",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "InfoLITHIUM™ H Series Battery",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/805693-7110.jpg?context=bWFzdGVyfGltYWdlc3wyNjE1fGltYWdlL2pwZWd8aW1hZ2VzL2g5YS9oMjcvODc5NjMwMDI0NzA3MC5qcGd8MDhkM2FiMjU3ZjQzNWI2MjNhMmIzMjBlMzFmODQ3ZDZiOGUzMjUxM2JiNjhjYmU4YjJmZjk2ZThlOTdmNDVlOA"
}
]
},
{
"summary": "Flagship tripod with remote control and pan handle – designed for professionals!",
"averageRating": 4.555555555555555,
"id": "23355",
"url": "/Open-Catalogue/Cameras/Camera-Accessories-%26-Supplies/Tripods/Flagship-tripod-with-remote-control-and-pan-handle/p/23355",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "580.38",
"formattedValue": "$580.38"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "Remote pan-handle with under-hand grip controls zoom in/out, record start/stop, photo mode on/off (camcorder only) Dimensions: maximum height approx. 1,505 mm Dimensions: minimum height approx. 735 mm Weight: approx. 3.2 kg Maximum Load: 5.0 kg Panning Angle: 360 degrees Tilting Angle: 90 degrees down / 70 degrees up Quick-release Mounting Shoe Ball level for quick and easy level adjustment Oil Friction Head Counter Balance Function ",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "Flagship tripod with remote control and pan handle",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/23355-9810.jpg?context=bWFzdGVyfGltYWdlc3wyNDA3fGltYWdlL2pwZWd8aW1hZ2VzL2hmYy9oYzYvODc5NjI4NzEzOTg3MC5qcGd8ZmZhNDk2NzE2NmIwNTJjYWRiMTJhNzQ3MzY3MzEwOTI4YjRkNTU1NWM3NzNlNzdhNDQ3M2IyOWQ2OGE4ZmU3Zg"
}
]
},
{
"summary": "14.2 megapixel Digital Single Lens Reflex (D-SLR) camera with responsive AF Live View. Twin lens kit with Standard Zoom (DT 18-70mm F3.5-5.6) and Telephoto Zoom (55-200mm F4-5.6). Superb optical quality from wide angle to telephoto covers wide range of shooting situations. Black camera body",
"classifications": [
{
"name": "Display",
"features": [
{
"range": false,
"name": "Display",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "LCD"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/41.display, 83"
}
],
"code": "41"
},
{
"name": "Memory",
"features": [
{
"range": false,
"name": "Compatible memory cards",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "cf"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/42.compatible memory cards, 730"
}
],
"code": "42"
}
],
"averageRating": 4.545454545454546,
"id": "1438466",
"url": "/Open-Catalogue/Cameras/Digital-Cameras/Digital-SLR/DSLR-A350-%2B-18-70mm-%2B55-200mm/p/1438466",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "1865.98",
"formattedValue": "$1,865.98"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "Overview/Features:-Extremely high resolution 14.2 effective megapixel CCD sensor for superbly detailed images with rich tones and vibrant color. -Large, high-resolution 2.7-inch LCD with 2-way tilt adjustment for shooting freedom and comfort at any angle. -Quick AF Live View for fast, accurate autofocus and responsive AF performance even with fast-moving objects. -Optimised BIONZ processor for enhanced picture quality, reduced image noise and responsive operation. -High sensitivity up to ISO3...",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "DSLR-A350 + 18-70mm +55-200mm",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/1438466-1237.jpg?context=bWFzdGVyfGltYWdlc3wyMDgzfGltYWdlL2pwZWd8aW1hZ2VzL2gzZC9oYWIvODc5NjI3OTA3ODk0Mi5qcGd8YmY0OTJiNWFjYTU3NDBhMjY1MWZmZjQ5M2M4Y2FkZDU0NjI0YjA5MWQyMWQyNTc1ZDIzZWQzMjY3MzVhOGYzMQ"
}
]
},
{
"summary": "Compact and stylish blue design, with 7.2 effective megapixels, high sensitivity for shooting in low-light, ZEISS 3x optical zoom lens, large 2.5-inch LCD screen, STAMINA battery life, and finished with a brushed aluminium face.",
"classifications": [
{
"name": "Display",
"features": [
{
"range": false,
"name": "Display",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "LCD"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/41.display, 83"
}
],
"code": "41"
},
{
"name": "Memory",
"features": [
{
"range": false,
"name": "Compatible memory cards",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "memory stick (ms),ms pro,microdrive"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/42.compatible memory cards, 730"
}
],
"code": "42"
}
],
"averageRating": 4.538461538461538,
"id": "816802",
"url": "/Open-Catalogue/Cameras/Digital-Cameras/Digital-Compacts/Cyber-shot-W55/p/816802",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "260.87",
"formattedValue": "$260.87"
},
"stock": {
"stockLevelStatus": {
"code": "lowStock",
"codeLowerCase": "lowstock"
},
"stockLevel": 4
},
"description": "- 7,2 effective megapixels - ISO 1000 high sensitivity (REI) for shooting in low-light situations - Carl-Zeiss Vario-Tessar lens - 3x optical zoom 6x digital zoom up to 14x smart zoom - Large 2.5-inch (6.2cm) LCD screen and optical view",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "Cyber-shot W55",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/816802-131.jpg?context=bWFzdGVyfGltYWdlc3wyMzIxfGltYWdlL2pwZWd8aW1hZ2VzL2g1Yy9oYWUvODc5NjMwMDcwNTgyMi5qcGd8ZmQyNGZiMjViNGE4NDE2MGFiMDQyYjE4ZjJjYWIwYzg0MmZjM2Y3MjBhNmRhOTBmOTI4YzQyYTcwNzZhNTkzYg"
}
]
},
{
"summary": "Pink Cyber-shot DSC-W55",
"classifications": [
{
"name": "Display",
"features": [
{
"range": false,
"name": "Display",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "LCD"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/41.display, 83"
}
],
"code": "41"
},
{
"name": "Memory",
"features": [
{
"range": false,
"name": "Compatible memory cards",
"featureUnit": {
"symbol": ".",
"unitType": "300",
"name": "."
},
"featureValues": [
{
"value": "memory stick (ms),ms pro"
}
],
"comparable": true,
"code": "ElectronicsClassification/1.0/42.compatible memory cards, 730"
}
],
"code": "42"
}
],
"averageRating": 4.533333333333333,
"id": "686951",
"url": "/Open-Catalogue/Cameras/Digital-Cameras/Digital-Compacts/Cyber-shot-DSC-W55/p/686951",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "260.87",
"formattedValue": "$260.87"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "- 7,2 effective megapixels - ISO 1000 high sensitivity (REI) for shooting in low-light situations - Carl-Zeiss Vario-Tessar lens - 3x optical zoom 6x digital zoom up to 14x smart zoom - Large 2.5-inch (6.2cm) LCD screen and optical view",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "Cyber-shot DSC-W55",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/686951-7673.jpg?context=bWFzdGVyfGltYWdlc3wyNTc4fGltYWdlL2pwZWd8aW1hZ2VzL2hjOS9oZmYvODc5NjI5ODczOTc0Mi5qcGd8YjAzMTI5NjMwYmRiNDU5Zjg0ZDU1MGQ3ZDZhMWM5M2M2YTUxODg2NzdjZmE4OGI1YzVlYjVmZjRjMzY5ZjZhYg"
}
]
},
{
"summary": "High Grade Tele Conversion Lens",
"averageRating": 4.533333333333333,
"id": "848855",
"url": "/Open-Catalogue/Cameras/Camera-Accessories-%26-Supplies/Camera-Lenses/VCL-HG1737C/p/848855",
"price": {
"currencyIso": "USD",
"priceType": "BUY",
"value": "369.16",
"formattedValue": "$369.16"
},
"stock": {
"stockLevelStatus": {
"code": "inStock",
"codeLowerCase": "instock"
}
},
"description": "- High performance tele conversion lens- Ideal for high resolution video and still images- Perfect for getting closer to the subject- Lens with 3 groups 5 elements. Magnification 1.7x- Fits 37mm diameter lenses",
"manufacturer": "Sony",
"volumePricesFlag": false,
"name": "VCL-HG1737C",
"images": [
{
"imageType": "PRIMARY",
"format": "thumbnail",
"url": "/medias/848855-1039.jpg?context=bWFzdGVyfGltYWdlc3wyODMzfGltYWdlL2pwZWd8aW1hZ2VzL2hkZC9oNjYvODc5NjMwMTE5NzM0Mi5qcGd8OWJlZGQzMDI5ODY2MTQwOGUyMDAxZTU4MWNhMDU0NzZkYjZmYjdiNjY2YWUxZGVkYWMyYzBhMjhlMzFlMzE5YQ"
}
]
}
],
"pagination": {
"sort": "topRated",
"pageSize": 20,
"currentPage": 0,
"totalResults": 179,
"totalPages": 9
},
"sorts": [
{
"selected": true,
"name": "Top Rated",
"code": "topRated"
},
{
"selected": false,
"name": "Name (ascending)",
"code": "name-asc"
},
{
"selected": false,
"name": "Name (descending)",
"code": "name-desc"
},
{
"selected": false,
"name": "Price (lowest first)",
"code": "price-asc"
},
{
"selected": false,
"name": "Price (highest first)",
"code": "price-desc"
}
],
"currentQuery": ":topRated",
"facets": [
{
"multiSelect": true,
"category": false,
"values": [
{
"selected": false,
"count": 100,
"query": ":topRated:availableInStores:Chiba",
"name": "Chiba"
},
{
"selected": false,
"count": 92,
"query": ":topRated:availableInStores:Choshi",
"name": "Choshi"
},
{
"selected": false,
"count": 102,
"query": ":topRated:availableInStores:Fukuoka Best Western Fukuoka Nakasu Inn",
"name": "Fukuoka Best Western Fukuoka Nakasu Inn"
},
{
"selected": false,
"count": 89,
"query": ":topRated:availableInStores:Fukuoka Canal City Fukuoka Washington Hotel",
"name": "Fukuoka Canal City Fukuoka Washington Hotel"
},
{
"selected": false,
"count": 94,
"query": ":topRated:availableInStores:Fukuoka Hilton Fukuoka Sea Hawk",
"name": "Fukuoka Hilton Fukuoka Sea Hawk"
},
{
"selected": false,
"count": 91,
"query": ":topRated:availableInStores:Fukuoka Hotel Monterey La Soeur Fukuoka",
"name": "Fukuoka Hotel Monterey La Soeur Fukuoka"
},
{
"selected": false,
"count": 93,
"query": ":topRated:availableInStores:Fukuoka Hotel Nikko Fukuoka",
"name": "Fukuoka Hotel Nikko Fukuoka"
},
{
"selected": false,
"count": 118,
"query": ":topRated:availableInStores:Ichikawa",
"name": "Ichikawa"
},
{
"selected": false,
"count": 92,
"query": ":topRated:availableInStores:Kawasaki Grand Hotel",
"name": "Kawasaki Grand Hotel"
},
{
"selected": false,
"count": 93,
"query": ":topRated:availableInStores:Kawasaki Hotel Sunroute Kawasaki",
"name": "Kawasaki Hotel Sunroute Kawasaki"
},
{
"selected": false,
"count": 99,
"query": ":topRated:availableInStores:Kawasaki Mets Kawasaki Hotel",
"name": "Kawasaki Mets Kawasaki Hotel"
},
{
"selected": false,
"count": 112,
"query": ":topRated:availableInStores:Kawasaki Mets Mizonokuchi Hotel",
"name": "Kawasaki Mets Mizonokuchi Hotel"
},
{
"selected": false,
"count": 92,
"query": ":topRated:availableInStores:Kawasaki Pearl Hotel Kawasaki",
"name": "Kawasaki Pearl Hotel Kawasaki"
},
{
"selected": false,
"count": 97,
"query": ":topRated:availableInStores:Kobe Bay Sheraton Hotel and Towers",
"name": "Kobe Bay Sheraton Hotel and Towers"
},
{
"selected": false,
"count": 61,
"query": ":topRated:availableInStores:Kobe Hotel Monterey Amalie",
"name": "Kobe Hotel Monterey Amalie"
},
{
"selected": false,
"count": 56,
"query": ":topRated:availableInStores:Kobe Hotel Monterey Kobe",
"name": "Kobe Hotel Monterey Kobe"
},
{
"selected": false,
"count": 121,
"query": ":topRated:availableInStores:Kobe Sannomiya Terminal Hotel",
"name": "Kobe Sannomiya Terminal Hotel"
},
{
"selected": false,
"count": 57,
"query": ":topRated:availableInStores:Kobe the b",
"name": "Kobe the b"
},
{
"selected": false,
"count": 100,
"query": ":topRated:availableInStores:Koto",
"name": "Koto"
},
{
"selected": false,
"count": 100,
"query": ":topRated:availableInStores:Matsudo",
"name": "Matsudo"
},
{
"selected": false,
"count": 90,
"query": ":topRated:availableInStores:Misato",
"name": "Misato"
},
{
"selected": false,
"count": 96,
"query": ":topRated:availableInStores:Nagoya Crowne Plaza Ana Grand Court Nagoya",
"name": "Nagoya Crowne Plaza Ana Grand Court Nagoya"
},
{
"selected": false,
"count": 98,
"query": ":topRated:availableInStores:Nagoya Hilton Nagoya Hotel",
"name": "Nagoya Hilton Nagoya Hotel"
},
{
"selected": false,
"count": 99,
"query": ":topRated:availableInStores:Nagoya Marriott Nagoya",
"name": "Nagoya Marriott Nagoya"
},
{
"selected": false,
"count": 95,
"query": ":topRated:availableInStores:Nagoya Royal Park Inn Nagoya",
"name": "Nagoya Royal Park Inn Nagoya"
},
{
"selected": false,
"count": 93,
"query": ":topRated:availableInStores:Nagoya The Westin Nagoya Castle",
"name": "Nagoya The Westin Nagoya Castle"
},
{
"selected": false,
"count": 102,
"query": ":topRated:availableInStores:Nakano",
"name": "Nakano"
},
{
"selected": false,
"count": 94,
"query": ":topRated:availableInStores:Osaka Best Western Hotel Fino Osaka Shinsaibashi",
"name": "Osaka Best Western Hotel Fino Osaka Shinsaibashi"
},
{
"selected": false,
"count": 92,
"query": ":topRated:availableInStores:Osaka Cross Hotel Osaka",
"name": "Osaka Cross Hotel Osaka"
},
{
"selected": false,
"count": 96,
"query": ":topRated:availableInStores:Osaka Crowne Plaza Hotel Ana Osaka",
"name": "Osaka Crowne Plaza Hotel Ana Osaka"
},
{
"selected": false,
"count": 92,
"query": ":topRated:availableInStores:Osaka Hilton Osaka Hotel",
"name": "Osaka Hilton Osaka Hotel"
},
{
"selected": false,
"count": 98,
"query": ":topRated:availableInStores:Osaka Ramada Osaka",
"name": "Osaka Ramada Osaka"
},
{
"selected": false,
"count": 120,
"query": ":topRated:availableInStores:Sapporo Ana Hotel Sapporo",
"name": "Sapporo Ana Hotel Sapporo"
},
{
"selected": false,
"count": 91,
"query": ":topRated:availableInStores:Sapporo Best Western Hotel Sapporo Nakajima Koen",
"name": "Sapporo Best Western Hotel Sapporo Nakajima Koen"
},
{
"selected": false,
"count": 99,
"query": ":topRated:availableInStores:Sapporo Hotel Resol Trinity Sapporo",
"name": "Sapporo Hotel Resol Trinity Sapporo"
},
{
"selected": false,
"count": 91,
"query": ":topRated:availableInStores:Sapporo Hotel Sunroute Sapporo",
"name": "Sapporo Hotel Sunroute Sapporo"
},
{
"selected": false,
"count": 98,
"query": ":topRated:availableInStores:Sapporo Sheraton Sapporo Hotel",
"name": "Sapporo Sheraton Sapporo Hotel"
},
{
"selected": false,
"count": 101,
"query": ":topRated:availableInStores:Shinbashi",
"name": "Shinbashi"
},
{
"selected": false,
"count": 93,
"query": ":topRated:availableInStores:Tokio Cerulean Tower Tokyu Hotel",
"name": "Tokio Cerulean Tower Tokyu Hotel"
},
{
"selected": false,
"count": 93,
"query": ":topRated:availableInStores:Tokio Dormy Inn Tokyo Hatchobori",
"name": "Tokio Dormy Inn Tokyo Hatchobori"
},
{
"selected": false,
"count": 120,
"query": ":topRated:availableInStores:Tokio Flexstay Nippori Inn",
"name": "Tokio Flexstay Nippori Inn"
},
{
"selected": false,
"count": 94,
"query": ":topRated:availableInStores:Tokio Hotel Metropolitan Tokyo",
"name": "Tokio Hotel Metropolitan Tokyo"
},
{
"selected": false,
"count": 96,
"query": ":topRated:availableInStores:Tokio Park Hotel Tokyo",
"name": "Tokio Park Hotel Tokyo"
},
{
"selected": false,
"count": 95,
"query": ":topRated:availableInStores:Yokohama Comfort Hotel Yokohama Kannai",
"name": "Yokohama Comfort Hotel Yokohama Kannai"
},
{
"selected": false,
"count": 95,
"query": ":topRated:availableInStores:Yokohama Hotel JAL City Kannai Yokohama",
"name": "Yokohama Hotel JAL City Kannai Yokohama"
},
{
"selected": false,
"count": 121,
"query": ":topRated:availableInStores:Yokohama Hotel New Grand",
"name": "Yokohama Hotel New Grand"
},
{
"selected": false,
"count": 98,
"query": ":topRated:availableInStores:Yokohama Sakuragicho Washington Hotel",
"name": "Yokohama Sakuragicho Washington Hotel"
},
{
"selected": false,
"count": 94,
"query": ":topRated:availableInStores:Yokohama Shin Yokohama Prince Hotel",
"name": "Yokohama Shin Yokohama Prince Hotel"
},
{
"selected": false,
"count": 93,
"query": ":topRated:availableInStores:Yokosuka",
"name": "Yokosuka"
}
],
"priority": 10000,
"name": "Stores"
},
{
"multiSelect": false,
"category": true,
"values": [
{
"selected": false,
"count": 9,
"query": ":topRated:category:829",
"name": "Battery Chargers"
},
{
"selected": false,
"count": 2,
"query": ":topRated:category:1421",
"name": "Binoculars"
},
{
"selected": false,
"count": 4,
"query": ":topRated:category:598",
"name": "Black & White Films"
},
{
"selected": false,
"count": 5,
"query": ":topRated:category:604",
"name": "Blank Video Tapes"
},
{
"selected": false,
"count": 48,
"query": ":topRated:category:585",
"name": "Camera Accessories & Supplies"
},
{
"selected": false,
"count": 4,
"query": ":topRated:category:934",
"name": "Camera Cables"
},
{
"selected": false,
"count": 4,
"query": ":topRated:category:586",
"name": "Camera Flashes"
},
{
"selected": false,
"count": 8,
"query": ":topRated:category:1288",
"name": "Camera Kits"
},
{
"selected": false,
"count": 10,
"query": ":topRated:category:588",
"name": "Camera Lenses"
},
{
"selected": false,
"count": 131,
"query": ":topRated:category:571",
"name": "Cameras"
},
{
"selected": false,
"count": 4,
"query": ":topRated:category:597",
"name": "Colour Films"
},
{
"selected": false,
"count": 30,
"query": ":topRated:category:106",
"name": "Components"
},
{
"selected": false,
"count": 16,
"query": ":topRated:category:206",
"name": "Data storage"
},
{
"selected": false,
"count": 71,
"query": ":topRated:category:575",
"name": "Digital Cameras"
},
{
"selected": false,
"count": 47,
"query": ":topRated:category:576",
"name": "Digital Compacts"
},
{
"selected": false,
"count": 24,
"query": ":topRated:category:578",
"name": "Digital SLR"
},
{
"selected": false,
"count": 2,
"query": ":topRated:category:574",
"name": "Film cameras"
},
{
"selected": false,
"count": 1,
"query": ":topRated:category:1201",
"name": "Fixatives"
},
{
"selected": false,
"count": 16,
"query": ":topRated:category:902",
"name": "Flash Memory"
},
{
"selected": false,
"count": 6,
"query": ":topRated:category:584",
"name": "Hand-held Camcorders"
},
{
"selected": false,
"count": 8,
"query": ":topRated:category:827",
"name": "Power Adapters & Inverters"
},
{
"selected": false,
"count": 30,
"query": ":topRated:category:816",
"name": "Power Supplies"
},
{
"selected": false,
"count": 13,
"query": ":topRated:category:814",
"name": "Rechargeable Batteries"
},
{
"selected": false,
"count": 8,
"query": ":topRated:category:587",
"name": "Tripods"
},
{
"selected": false,
"count": 4,
"query": ":topRated:category:577",
"name": "Webcams"
}
],
"priority": 6000,
"name": "Category",
"topValues": [
{
"selected": false,
"count": 131,
"query": ":topRated:category:571",
"name": "Cameras"
},
{
"selected": false,
"count": 71,
"query": ":topRated:category:575",
"name": "Digital Cameras"
},
{
"selected": false,
"count": 48,
"query": ":topRated:category:585",
"name": "Camera Accessories & Supplies"
},
{
"selected": false,
"count": 47,
"query": ":topRated:category:576",
"name": "Digital Compacts"
}
]
},
{
"multiSelect": false,
"category": true,
"values": [
{
"selected": false,
"count": 40,
"query": ":topRated:brand:brand_10",
"name": "Canon"
},
{
"selected": false,
"count": 1,
"query": ":topRated:brand:brand_745",
"name": "Canyon"
},
{
"selected": false,
"count": 1,
"query": ":topRated:brand:brand_75",
"name": "Fujifilm"
},
{
"selected": false,
"count": 1,
"query": ":topRated:brand:brand_1",
"name": "HP"
},
{
"selected": false,
"count": 3,
"query": ":topRated:brand:brand_2171",
"name": "ICIDU"
},
{
"selected": false,
"count": 7,
"query": ":topRated:brand:brand_18",
"name": "Kingston"
},
{
"selected": false,
"count": 23,
"query": ":topRated:brand:brand_88",
"name": "Kodak"
},
{
"selected": false,
"count": 1,
"query": ":topRated:brand:brand_91",
"name": "Logitech"
},
{
"selected": false,
"count": 1,
"query": ":topRated:brand:brand_103",
"name": "NEC"
},
{
"selected": false,
"count": 6,
"query": ":topRated:brand:brand_26",
"name": "Samsung"
},
{
"selected": false,
"count": 86,
"query": ":topRated:brand:brand_5",
"name": "Sony"
},
{
"selected": false,
"count": 2,
"query": ":topRated:brand:brand_702",
"name": "Sweex"
},
{
"selected": false,
"count": 2,
"query": ":topRated:brand:brand_251",
"name": "TDK"
},
{
"selected": false,
"count": 1,
"query": ":topRated:brand:brand_128",
"name": "Targus"
},
{
"selected": false,
"count": 4,
"query": ":topRated:brand:brand_2",
"name": "Toshiba"
}
],
"priority": 5000,
"name": "Brand",
"topValues": [
{
"selected": false,
"count": 86,
"query": ":topRated:brand:brand_5",
"name": "Sony"
},
{
"selected": false,
"count": 40,
"query": ":topRated:brand:brand_10",
"name": "Canon"
},
{
"selected": false,
"count": 23,
"query": ":topRated:brand:brand_88",
"name": "Kodak"
},
{
"selected": false,
"count": 7,
"query": ":topRated:brand:brand_18",
"name": "Kingston"
}
]
},
{
"multiSelect": true,
"category": false,
"values": [
{
"selected": false,
"count": 38,
"query": ":topRated:price:$0-$49.99",
"name": "$0-$49.99"
},
{
"selected": false,
"count": 63,
"query": ":topRated:price:$50-$199.99",
"name": "$50-$199.99"
},
{
"selected": false,
"count": 38,
"query": ":topRated:price:$200-$499.99",
"name": "$200-$499.99"
},
{
"selected": false,
"count": 22,
"query": ":topRated:price:$500-$999.99",
"name": "$500-$999.99"
},
{
"selected": false,
"count": 18,
"query": ":topRated:price:$1,000-$100,000",
"name": "$1,000-$100,000"
}
],
"priority": 4000,
"name": "Price"
},
{
"multiSelect": true,
"category": false,
"values": [
{
"selected": false,
"count": 7,
"query": ":topRated:Colour of product, 1766:Black",
"name": "Black"
}
],
"priority": 1000,
"name": "Color"
},
{
"multiSelect": true,
"category": false,
"values": [
{
"selected": false,
"count": 1,
"query": ":topRated:Lens type, 472:fisheye",
"name": "fisheye"
},
{
"selected": false,
"count": 6,
"query": ":topRated:Lens type, 472:fixed",
"name": "fixed"
},
{
"selected": false,
"count": 2,
"query": ":topRated:Lens type, 472:telephoto",
"name": "telephoto"
},
{
"selected": false,
"count": 1,
"query": ":topRated:Lens type, 472:wide-angle",
"name": "wide-angle"
},
{
"selected": false,
"count": 1,
"query": ":topRated:Lens type, 472:zoom",
"name": "zoom"
}
],
"priority": 1000,
"name": "Lens type"
},
{
"multiSelect": true,
"category": false,
"values": [
{
"selected": false,
"count": 3,
"query": ":topRated:Megapixel, 63:5 - 5.9 mp",
"name": "5 - 5.9 mp"
},
{
"selected": false,
"count": 9,
"query": ":topRated:Megapixel, 63:7 - 7.9 mp",
"name": "7 - 7.9 mp"
},
{
"selected": false,
"count": 6,
"query": ":topRated:Megapixel, 63:8 - 8.9 mp",
"name": "8 - 8.9 mp"
},
{
"selected": false,
"count": 1,
"query": ":topRated:Megapixel, 63:9 - 9.9 mp",
"name": "9 - 9.9 mp"
},
{
"selected": false,
"count": 30,
"query": ":topRated:Megapixel, 63:10 - 10.9 mp",
"name": "10 - 10.9 mp"
},
{
"selected": false,
"count": 6,
"query": ":topRated:Megapixel, 63:12 - 12.9 mp",
"name": "12 - 12.9 mp"
},
{
"selected": false,
"count": 4,
"query": ":topRated:Megapixel, 63:14 - 14.9 mp",
"name": "14 - 14.9 mp"
},
{
"selected": false,
"count": 8,
"query": ":topRated:Megapixel, 63:15 - 15.9 mp",
"name": "15 - 15.9 mp"
},
{
"selected": false,
"count": 1,
"query": ":topRated:Megapixel, 63:20 - 29.9 mp",
"name": "20 - 29.9 mp"
}
],
"priority": 1000,
"name": "Megapixels"
},
{
"multiSelect": false,
"category": false,
"values": [
{
"selected": false,
"count": 2,
"query": ":topRated:Mounting, 1867:Floor-standing",
"name": "Floor-standing"
},
{
"selected": false,
"count": 1,
"query": ":topRated:Mounting, 1867:Quick-release Mounting Shoe",
"name": "Quick-release Mounting Shoe"
}
],
"priority": 1000,
"name": "Mounting"
},
{
"multiSelect": false,
"category": false,
"values": [
{
"selected": false,
"count": 1,
"query": ":topRated:Resolution, 80:1280 x 720",
"name": "1280 x 720"
}
],
"priority": 1000,
"name": "Resolution"
}
],
"breadcrumbs": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment